gpt4 book ai didi

python - 无法将字符串转换为 int

转载 作者:行者123 更新时间:2023-11-28 21:43:24 25 4
gpt4 key购买 nike

我目前从 python 2 开始使用 python 3。在 Python 2 中,可以使用 int() 函数轻松完成字符串类型转换,但我在 Py3.5.3 中遇到问题

current = input("Enter the Current price: ")
int(current)
print (type(current))
c = current - 24

即使在类型转换函数之后,current 仍然显示为 Class str

错误是 TypeError: unsupported operand type(s) for -: 'str' and 'int'

我知道这只是一个小错误,但我在网上查找的示例都像我一样使用了 int 函数。这里可能是什么问题

最佳答案

您没有保存 int(current) 的返回值,它是整数表示。尝试

current = int(current)

应该可以了。

关于python - 无法将字符串转换为 int,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42298198/

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