python oneline if else nothing code example
Example 1: python if else one line
x = 'foo' if bar else 'baz'
Example 2: python one line if without else
var = [exp] if [condition] else None
x = 'foo' if bar else 'baz'
var = [exp] if [condition] else None