🌈 搜索
📅  最后修改于: 2022-03-11 15:04:48.240000             🧑  作者: Mango
a = 5 # a++ WRONG: ++ (or --) is not a reserved operator a += 1 # correct (increment) a -= 1 # correct (decrement)