Does Python have something like an empty string variable where you can do:
if myString == string.empty:
Regardless, what\'s the most elegan
Test empty or blank string (shorter way):
if myString.strip(): print("it's not an empty or blank string") else: print("it's an empty or blank string")