对于常用的Python对象x,float(x)代表x.float()。
如果未给定参数,则返回0.0。
The float type is described in Numeric Types — int, float, complex.
浮点类型详细描述参考数字类型—整数、浮点数、复数。
1 >>>
2 >>> float('+1.23')
3 1.23
4 >>> float(' -12345\n')
5 -12345.0
6 >>> float('1e-003')
7 0.001
8 >>> float('+1E6')
9 1000000.0
10 >>> float('-Infinity')
11 -inf