数字案例

53 阅读1分钟
print(type(1))
print(dir(1))
a = 1
b = 1.1
c = 3.14j

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