- num += 1 等价于 num = num + 1
- num -= 1 等价于 num = num - 1
- num *= 2 等价于 num = num * 2
- num /= 2 等价于 num = num / 2
- num //= 2 等价于 num = num // 2
- num %= 2 等价于 num = num % 2
- num **= 2 等价于 num = num ** 2
标签:+= pos div 特殊 log nbsp post body bsp
标签:+= pos div 特殊 log nbsp post body bsp
原文地址:https://www.cnblogs.com/yhgszi/p/8215769.html