Source Code:
(back to article)
# Mit range for i in range(10): print(i) # Mit xrange for i in xrange(10): print(i)
Result:
Report an issue