RosettaCodeData/Task/Count-in-octal/Python/count-in-octal.py
2023-07-01 13:44:08 -04:00

3 lines
57 B
Python

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