Python 内建函数
把数字 5 转换为浮点数:
x = float(5)
运行实例
float() 把指定值转换为浮点数。
float(value)
把字符串转换为浮点数:
x = float("3.1415")