Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am new to Python, how can I do the following C idiom in Python?

i += 1

i++

i = (j == 2)? 1 : 0

Thank you.

share|improve this question
What do you actually intend to do? Smells like the XY problem to me. – ThiefMaster Nov 21 '12 at 8:21

closed as too localized by ecatmur, Jonathan Leffler, millimoose, Musa, Barmar Nov 22 '12 at 0:06

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

up vote 17 down vote accepted

In Python:

i += 1

i += 1

i = 1 if j == 2 else 0
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.