the easiest way to check if its empty is simple :

Code:
_string = ""

if len(_string) <= 0:
  print "Empty String"
else:
  print "Not Empty String"

Output:
  Empty String