2023-06-13 16:37:18 +08:00

11 lines
87 B
Python

a = 10
b = 0b10
c = 0o10
d = 0x10
e = 1.0
print(a)
print(b)
print(c)
print(d)
print(e)