gpt4 book ai didi

python - 为什么 int(float(str)) 工作但 int(str) 不工作

转载 作者:太空宇宙 更新时间:2023-11-04 06:49:46 24 4
gpt4 key购买 nike

假设我有一个字符串:

temp = "0.1"

当我运行 int(temp) 时:

我收到以下错误:

Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ValueError: invalid literal for int() with base 10: '0.1'

但是当我运行 int(float(temp)) 时:

我得到了正确的输出,即 0


为什么转换为float然后转换为int可以,而直接转换为int不行?

感谢和问候

最佳答案

这是因为你的字符串是float格式。所以当你直接将“0.1”转换为int时,它会返回一个错误。但是,如果您转换为 float,然后转换为 int,它可以截断您的数字。

关于python - 为什么 int(float(str)) 工作但 int(str) 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51458908/

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