python print with condition code example
Example 1: if condition in print statement python
print (a if b else 0)
Example 2: 1 line if statement python
value_when_true if condition else value_when_false
print (a if b else 0)
value_when_true if condition else value_when_false