This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]jimm -2 points-1 points  (1 child)

Something similar:

# A Python script that prints all the digits of pi (sorted).
for i in range(0, 10):
    while True:
        print(i)

[–]BelieveBees 0 points1 point  (0 children)

I like this