I want to print 3 numbers without blank.
>>> for x in range(3):
...     print x
...
0
1
2
>>> for x in range(3):
...     print x,
...
0 1 2

how to print
012
?

thanks.

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to