Does Python have something like an empty string variable where you can do:
if myString == string.empty:
Regardless, what\'s the most elegan
str = "" if not str: print "Empty String" if(len(str)==0): print "Empty String"