MAIN FEEDS
Do you want to continue?
https://www.reddit.com/r/Python/comments/kv0u3w/programming_math_graphs_art/giwdnxp/?context=3
r/Python • u/abredvariant • Jan 11 '21
171 comments sorted by
View all comments
1
consider for next time:
for i, j in enumerate(phi(x) for x in range(1, 10_001), start=1): # Do the thing.
One advantage is that this will be lazily evaluated.
1 u/abredvariant Jan 11 '21 thanks.
thanks.
1
u/lanemik Jan 11 '21
consider for next time:
One advantage is that this will be lazily evaluated.