标签: python python-2.7
可能重复: Why there are no ++ and — operators in Python?
++i是合法的。但它是一元+运算符。
++i
i++是非法的。
i++
为什么Python决定不以正常方式支持++运算符?
++