在Python中,加法运算符(+
)用于在两个操作数之间执行加法运算。
✏️ 语法
operand1 + operand2
在上述代码中,operand1
和operand2
可以是任何数值或变量。
📘 示例
num1 = 10
num2 = 5
result = num1 + num2
print(result)
在上述代码中,我们有两个变量num1
和num2
,分别赋值为10和5。
然后,我们使用加法运算符+
将num1
和num2
相加,并将结果存储在变量result
中。
最后,我们打印result
的值,它将是15。