https://www.broken-by-design.fr/posts/python-string-emptiness/
"Python String Emptiness Test"
=> What's the most self-explanatory and safest way of checking if a Python string is empty?
Not a simple question, unfortunately, and no universal answer.
@x_cli len(string_in_question) == 0?
@r000t
You could subclass str 😅 But I guess this would be far-fetched. And you would be a str of sorts, so... 🙂
@bcl