📅  最后修改于: 2022-03-11 14:45:32.720000             🧑  作者: Mango
# 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