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 中做一个简单的 1 单位增量 (++)。
我似乎从来没有找到比
x = x + 1
我究竟做错了什么 ?
Python 没有++运算符。您应该使用+=运算符:
++
+=
x += 1
您正在寻找的答案是: