代码示例:(标识:python_numbers_float_2)
python_numbers_float_2.py
x = 27e4
y = 15E2
z = -49.8e100

print(type(x))
print(type(y))
print(type(z))
运行结果: