例如:
将数字3转换为浮点数:
x = float(3)
1、定义和用法
float()
函数将指定的值转换为浮点数。
2、调用语法
float(value)
3、参数说明
参数 | 描述 |
value | 可以转换为浮点数的数字或字符串 |
4、使用示例
例如:
将字符串转换为浮点数:
x = float("3.500")
例如:
将数字3转换为浮点数:
x = float(3)
float()
函数将指定的值转换为浮点数。
float(value)
参数 | 描述 |
value | 可以转换为浮点数的数字或字符串 |
例如:
将字符串转换为浮点数:
x = float("3.500")