Technical notes, my online memory
Tuesday, May 14, 2013
python set a variable conditional on another variable
Tiny python snippet. If you're doing this:
if value: output = value else: output = 'somethingelse'
Do this instead:
output = value or 'somethingelse'
No comments:
Post a Comment
‹
›
Home
View web version
No comments:
Post a Comment