Email or username:

Password:

Forgot your password?
Top-level
Craig Maloney ☕

@schlink Yeah, unfortunately I've done the following in python way too often:

bar = 'something else'
if foo:
bar = 'something'

3 comments
Ellie

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

bar = 'something' if foo else 'something else'
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