6

In java, I use the

variable = something == 1 ? 1 : 0

function all the time. Is there an equivalent function in python?

Vikrant
  • 5,290
  • 16
  • 48
  • 71
Shwiby
  • 111
  • 6

2 Answers2

4

In Python, that operator reads slightly differently - more like English. The equivalent to your Java statement in Python would be:

variable = 1 if something == 1 else 0
Smashery
  • 54,058
  • 30
  • 96
  • 124
3

It is called the 'conditional' in Python:

>>> 'one' if 1 else 'not'
'one'

Covered in PEP308

dawg
  • 90,796
  • 20
  • 120
  • 197