Python has such an operator:
variable = something if condition else something_else
Alternatively, although not recommended (see karadoc’s comment):
variable = (condition and something) or something_else
Python has such an operator:
variable = something if condition else something_else
Alternatively, although not recommended (see karadoc’s comment):
variable = (condition and something) or something_else