什么是浮点数类型常量,如何判断?

2025-04-06 02:09:09
推荐回答(1个)
回答1:

#!/usr/bin/python
x=1.00
if type(x)==type(2.0):
print("x is float")