Originally posted by defience
Code:
I don't see where the "2" is coming from in your example.
Print will put a space in for you by using the comma.
range() takes (start, [stop], [step]) where braces mean optional parameters.
for i in range(30):
print 2, i
Comment