Logo

Programming-Idioms

History of Idiom 110 > diff from v79 to v80

Edit summary for version 80 by programming-idioms.org:
[Python] Better demo link (shows code)

Version 79

2022-02-24, 18:07:01

Version 80

2022-02-24, 18:07:18

Idiom #110 Check if string is blank

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

Idiom #110 Check if string is blank

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

Code
blank = s is None or s.strip() == ''
Code
blank = s is None or s.strip() == ''
Demo URL
https://repl.it/@ProgIdioms/IrritatingSaddlebrownQuery
Demo URL
https://replit.com/@ProgIdioms/IrritatingSaddlebrownQuery#main.py