gpt4 book ai didi

python - python 中的 ValueError 和 TypeError

转载 作者:太空狗 更新时间:2023-10-29 21:27:54 25 4
gpt4 key购买 nike

我不能完全理解 Python3x 中 Type 和 Value error 之间的区别。

当我尝试使用 float('string') 而不是 TypeError 时,为什么会出现 ValueError?这不应该也给出 TypeError 因为我正在传递一个类型为“str”的变量以转换为 float 吗?

In [169]: float('string')
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
<ipython-input-169-f894e176bff2> in <module>()
----> 1 float('string')

ValueError: could not convert string to float: 'string'

最佳答案

值错误是

Raised when a built-in operation or function receives an argument that has the right type but an inappropriate value

float函数可以接受一个字符串,即float('5'),只是'string'中的值float('string') 是一个不合适的(不可转换的)字符串

另一方面,

Passing arguments of the wrong type (e.g. passing a list when an int is expected) should result in a TypeError

因此,如果您尝试使用 float(['5']),您将得到一个 TypeError,因为列表永远无法转换为 float 。

Cite

关于python - python 中的 ValueError 和 TypeError,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48343387/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com