📜  python代码示例中的增强赋值运算符是什么

📅  最后修改于: 2022-03-11 14:45:32.720000             🧑  作者: Mango

代码示例1
# Augmented Assignment Operators are used to replace those statements 
# where binary operator takes two operands 


# Addition
a = 23
b = 3

# You can write a = a+b but this is more efficient

a += b