【发布时间】:2016-11-29 10:14:45
【问题描述】:
为什么我不能把这些加在一起?
a = int(input("input a number to add"))
b = int(input("input a number to add"))
a + b = c
print(c)
不能分配给操作员
【问题讨论】:
-
假设您使用 Python 进行编程,我建议您从 the Python beginners guide 和 other Python documentation 开始。
标签: python python-2.7 math integer add