gpt4 book ai didi

python - 在 Python 中显示数字 int

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

如何在 python 中显示数字整数?例如:

number1 = raw_input('Write one number:  ')
number2 = raw_input('Write other number: ')
result = number1 + number2
print "The sum of the numbers is: %d" % result # here, display the result of the operatio n.

最佳答案

你想要

result = int(number1) + int(number2)

raw_input 返回字符串。

关于python - 在 Python 中显示数字 int,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7758776/

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