python中float函数的用法
时间: 2023-09-18 15:11:37 浏览: 140
tofloat函数的实现
`float()` 是 Python 内置函数之一,用于将字符串或数值转换为浮点数类型。
使用方法如下:
```python
float([x])
```
其中,可选参数 `x` 表示要转换的字符串或数值。如果省略 `x` ,则返回值为 0.0。
示例:
```python
>>> float('3.14')
3.14
>>> float(10)
10.0
>>> float()
0.0
```
需要注意的是,如果要转换的字符串不是一个合法的浮点数,将会抛出 `ValueError` 异常。
```python
>>> float('abc')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ValueError: could not convert string to float: 'abc'
```
阅读全文