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 新手,如何在 Python 中执行以下 C 习语?
i += 1 i++ i = (j == 2)? 1 : 0
谢谢你。
在 Python 中:
i += 1 i += 1 i = 1 if j == 2 else 0