Email or username:

Password:

Forgot your password?
Top-level
Ellie

@craigmaloney @schlink Hang on, I think Python does do what you want:

bar = 'something' if foo else 'something else'
2 comments
Eugen Rochko

@noelle @craigmaloney @schlink Don't they all have ternary operators? condition ? when-true : when-false

Ellie

@Gargron @craigmaloney @schlink This is Python's equivalent of the ternary operator, I think.

Go Up