gpt4 book ai didi

Python 极其简单的计算器按字面意思将数字相加

转载 作者:太空宇宙 更新时间:2023-11-04 09:08:53 25 4
gpt4 key购买 nike

所以我正在制作一个非常简单的计算器作为我在 python 中的第一个真正的项目,我将在其上添加更多功能但现在的问题是它按字面意思添加数字所以如果我键入 2 作为第一个数字和 3 作为第二个,它将给出 23:这是我的代码

a = input ('Enter the first number')
b = input ('Enter the second number')
c = (a+b)
print (c)

最佳答案

input 在 py3.x 中返回一个字符串,使用 int() 将该字符串转换为整数:

a = int(input ('Enter the first number'))
b = int(input ('Enter the second number'))

关于Python 极其简单的计算器按字面意思将数字相加,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17432141/

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