RosettaCodeData/Task/Count-in-octal/Python/count-in-octal-1.py
2023-12-16 21:33:55 -08:00

3 lines
57 B
Python

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