Programming Python
The while statement, example 2 (1)
# program with a while loop n = 0 while 1: print n, n = n+1
What does this program print?