Logo

Programming-Idioms

History of Idiom 110 > diff from v33 to v34

Edit summary for version 34 by justafoo:
[Python] better fix

Version 33

2019-09-26, 17:54:34

Version 34

2019-09-26, 17:55:29

Idiom #110 Check if string is blank

Set boolean blank to true if string s is empty, or null, or contains only whitespace ; false otherwise.

Idiom #110 Check if string is blank

Set boolean blank to true if string s is empty, or null, or contains only whitespace ; false otherwise.

Code
blank = not s or s.isspace()
Code
blank = not s.strip()