发布网友 发布时间:2022-04-25 07:08
共2个回答
懂视网 时间:2022-05-21 20:38
valueerror是什么错误呢?不知道的小伙伴来看看小编今天的分享吧!
ValueError异常是当方法接收正确数据类型但值不合适的参数时,将引发Python中的ValueError异常。 关联的值是一个字符串,提供有关数据类型不匹配的详细信息。用户代码可能引发TypeError异常,以指示不支持并且不意图对某个对象进行尝试的操作。
ValueError异常及其处理方法:
以ValueError Exception为例
import math
math.sqrt(-10)
输出量
Traceback (most recent call last):
File "/Users/krunal/Desktop/code/pyt/database/app.py", line 3, inmath.sqrt(-10) ValueError: math domain error
如您所见,我们收到了ValueError:数学域错误。
如何在Python中处理ValueError异常
要处理ValueError异常,请使用try-except块。
import math
data = 64
try:
print(f"Square Root of {data} is {math.sqrt(data)}")
except ValueError as v:
print(f"You entered {data}, which is not a positive number")
输出量
Square Root of 64 is 8.0
现在,让我们将负值分配给数据变量并查看输出。
import math
data = -64
try:
print(f"Square Root of {data} is {math.sqrt(data)}")
except ValueError as v:
print(f"You entered {data}, which is not a positive number")
输出量
You entered -64, which is not a positive number
您可以看到我们的程序引发了ValueError并执行了except块。
我们的程序可以在int()和math.sqrt()函数中引发ValueError。 因此,我们可以创建一个嵌套的try-except块来处理它们。
以上就是小编今天的分享了,希望可以帮助到大家。
热心网友 时间:2022-05-21 17:46
#coding=utf8运行结果如下:
{'0004': {'03': 212323.323}, '0001': {'01': 232323.293}, '0002': {'02': 2378323.243}, '0003': {'01': 234523.2623}}
你运行会出错,应该是你的txt内容不对,其格式应该要类似于这样
0001 01 232323.293
0002 02 2378323.243
0003 01 234523.2623
0004 03 212323.323