MeadSteve to [email protected]English • 1 year agoTyped Python: Choose Sequence over Listblog.meadsteve.devexternal-linkmessage-square8fedilinkarrow-up118arrow-down10file-text
arrow-up118arrow-down1external-linkTyped Python: Choose Sequence over Listblog.meadsteve.devMeadSteve to [email protected]English • 1 year agomessage-square8fedilinkfile-text
minus-square@[email protected]linkfedilink8•1 year agoIf you don’t need to reuse the collection or access its items out of order, you can also use Iterable which accepts even more inputs like generators.
If you don’t need to reuse the collection or access its items out of order, you can also use
Iterable
which accepts even more inputs like generators.