w3schools
编辑器
运行结果尺寸:
625 x 591
x = 1 y = 2.8 z = 1j print(type(x)) print(type(y)) print(type(z))
x
x = 1
y = 2.8
z = 1j
print(type(x))
print(type(y))
print(type(z))
<class 'int'>
<class 'float'>
<class 'complex'>