Python: 10 Cool Tricks with the * Operator (lucasoshiro.github.io) 7 points by lucasoshiro 2y ago ↗ HN
[–] L3viathan 2y ago ↗ > any generator. For example, the classic range`range` is not a generator.Regarding number 8, instead of `Counter` you can also use dicts:`unique = list(dict.from_keys(iterable))`
1 comment
[ 3.5 ms ] story [ 16.4 ms ] thread`range` is not a generator.
Regarding number 8, instead of `Counter` you can also use dicts:
`unique = list(dict.from_keys(iterable))`