Aleksand Zaitsev
z0rr0's blog

z0rr0's blog

Follow
Follow
homebadges
Tag

Python 3

#python3

More content

Read more stories on Hashnode


Articles with this tag

Python comprehensions vs cycles

Aug 31, 20212 min read

Almost all python programmers know that there are list comprehensions PEP 202. # create list of odd numbers with cycle a = [] for i in range(10): ...

Python comprehensions vs cycles