Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 为什么 Python 中没有 ++ 和 — 运算符?
++i是合法的。但它是一元 + 运算符。
++i
并且i++是非法的。
i++
为什么 Python 决定不++以正常方式支持运算符?
++