Logo

Programming-Idioms

History of Idiom 110 > diff from v60 to v61

Edit summary for version 61 by programming-idioms.org:
[Python] Handle None. +DemoURL

Version 60

2021-01-20, 11:58:26

Version 61

2021-02-26, 08:59:12

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 = s.strip() == ''
Code
blank = s is None or s.strip() == ''
Demo URL
https://repl.it/@ProgIdioms/IrritatingSaddlebrownQuery