[EMAIL PROTECTED] a écrit :
> How to check if a string is empty in python?
> if(s == "") ??
> 

if not s:
   print "s is empty"


-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to