Does Python have something like an empty string variable where you can do:
if myString == string.empty:
Regardless, what\'s the most elegan
a = '' b = ' ' a.isspace() -> False b.isspace() -> True