python mark operator code example
Example 1: python if else short version
x = 10 if a > b else 11
Example 2: python turnary
is_nice = True
state = "nice" if is_nice else "not nice"
x = 10 if a > b else 11
is_nice = True
state = "nice" if is_nice else "not nice"