blob: d8ba8e4346f1b5a901784e06363ce18436f2a8da (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
# test builtin oct function
print(oct(1))
print(oct(-1))
print(oct(15))
print(oct(-15))
print(oct(12345))
print(oct(0o12345))
print(oct(12345678901234567890))
print(oct(0o12345670123456701234))
|