11 lines
87 B
Python
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) |