python将两个字符串转换为浮点数的方法
时间: 2024-01-15 19:04:53 浏览: 74
Python字符串转换成浮点数函数分享
5星 · 资源好评率100%
可以使用内置函数`float()`将字符串转换为浮点数,然后进行数值运算。例如:
```python
s1 = "3.14"
s2 = "2.71"
f1 = float(s1)
f2 = float(s2)
result = f1 + f2
print(result) # 输出 5.85,类型为 float
```
同样需要注意的是,如果字符串不能被转换为浮点数,则会抛出`ValueError`异常。
阅读全文