RosettaCodeData/Task/Count-in-octal/Python/count-in-octal.py

4 lines
57 B
Python

import sys
for n in xrange(sys.maxint):
print oct(n)