python-3.x 我不理解表达式的输出[关闭]

hkmswyz6  于 2023-10-21  发布在  Python
关注(0)|答案(1)|浏览(86)

**已关闭。**此问题需要debugging details。它目前不接受回答。

编辑问题以包括desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将帮助其他人回答这个问题。
昨天关门了。
Improve this question
我是一个绝对的初学者,刚刚开始学习python作为我的第一语言,所以在jupyter notebook中的字符串操作,输出是这样的,我似乎不能理解输出这是截图-(https://i.stack.imgur.com/9XUZM.png),但在另一个输出中,它给出了字符串操作的输出(https://i.stack.imgur.com/evVim.png)。为什么在第一个图像中没有显示9+7 = 16?

rbl8hiat

rbl8hiat1#

当你使用字符串加上要连接字符串到对方,如果你想有数学运算,你必须使用这样的数字
示例:串联

x='1'
y='2'

print(x+y)

输出('12')
数学示例:

x=1
y=2
# or better way is
result=x+y
print(result)

输出(3)

相关问题