返回顶部
首页 > 资讯 > 后端开发 > Python >python string转float报ValueError: could not convert string to float
  • 656
分享到

python string转float报ValueError: could not convert string to float

python开发语言Poweredby金山文档 2023-09-22 07:09:12 656人浏览 薄情痞子

Python 官方文档:入门教程 => 点击学习

摘要

string转float的方法 python中,可以使用内置的float()函数将字符串string对象作为形参进行类型的转换,并以浮点数的类型值返回,并不修改原字符串string对象。语法如下: float( strObj ) Va

string转float的方法

python中,可以使用内置的float()函数将字符串string对象作为形参进行类型的转换,并以浮点数的类型值返回,并不修改原字符串string对象。语法如下:

float( strObj )

ValueError: could not convert string to float

使用float()函数来转换字符串为浮点数是,Python抛出ValueError,并提示,could not convert string to float,意思是无法将参数指定的字符串转换为浮点数float类型的值,这是为什么呢?这是因为能够被float()函数转换的字符串需要满足数值型的字符串,比如“1.2”、“3”、“-1.01”等等。如下方的实例:

>>> float('a')Traceback (most recent call last):  File "", line 1, in ValueError: could not convert string to float: 'a'

解决方法,及相关实例

可以通过try...except语句,来处理float()方法转换string过程中可能抛出的ValueError,让程序继续执行,如下代码:

#-*- coding:utf-8 -*-def str2float(arg):    try:        a = float(arg)        return a    except ValueError as err:        return '请输入数值型字符串,比如"1.2"、"2.5"、"-3"等等'print(str2float("666"))print(str2float("abc"))#命令行输入运算python文件命令,比如:python3 test.py得到输出:666.0请输入数值型字符串,比如"1.2"、"2.5"、"-3"等等
python全栈: 笨鸟工具,python全栈
原文地址: python string转float报ValueError: could not convert string to float

来源地址:https://blog.csdn.net/weixin_47378963/article/details/129680402

--结束END--

本文标题: python string转float报ValueError: could not convert string to float

本文链接: https://lsjlt.com/news/414913.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作