标签: python c increment ternary-operator post-increment
我是Python的新手,如何在Python中执行以下C语言?
i += 1 i++ i = (j == 2)? 1 : 0
谢谢。
答案 0 :(得分:19)
在Python中:
i += 1 i += 1 i = 1 if j == 2 else 0