1# test builtin oct function 2 3print(oct(1)) 4print(oct(-1)) 5print(oct(15)) 6print(oct(-15)) 7 8print(oct(12345)) 9print(oct(0o12345)) 10