print(type(1))
print(dir(1))
a = 1
b = 1.1
c = 3.14j

print(type(a), type(b), type(c))