Python 的 float(~)
构造函数从数字或字符串返回浮点数。
参数
1.x
|数字或字符串 | optional
用于构造 float
的数字或字符串。默认为 0.0
。
返回值
浮点数。
例子
String
要从字符串返回浮点数:
float('-1.45')
-1.45
前导和尾随空格将被忽略:
float(' -1.45 ')
-1.45
整数
要从整数返回浮点数:
float(2)
2.0
相关用法
- Python float转exponential用法及代码示例
- Python float.is_integer用法及代码示例
- Python float()用法及代码示例
- Python NumPy float_power方法用法及代码示例
- Python floating转binary用法及代码示例
- Python float用法及代码示例
- Python NumPy floor方法用法及代码示例
- Python NumPy floor_divide方法用法及代码示例
- Python NumPy fliplr方法用法及代码示例
- Python NumPy flatten方法用法及代码示例
- Python NumPy flipud方法用法及代码示例
- Python NumPy flat属性用法及代码示例
- Python NumPy flatnonzero方法用法及代码示例
- Python dict fromkeys()用法及代码示例
- Python frexp()用法及代码示例
- Python BeautifulSoup find_next方法用法及代码示例
- Python functools.wraps用法及代码示例
- Python functools.singledispatchmethod用法及代码示例
- Python calendar firstweekday()用法及代码示例
- Python NumPy full方法用法及代码示例
- Python Django format_lazy用法及代码示例
- Python format()用法及代码示例
- Python NumPy fill_diagonal方法用法及代码示例
- Python filecmp.cmpfiles()用法及代码示例
注:本文由纯净天空筛选整理自Arthur Yanagisawa大神的英文原创作品 Python | float constructor。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。