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