LittlePython wrote: I am not too sure I know what None really means. It means null, void or lack of value. It is not an empty string. You can't add None to stings.
>>> r = None >>> print r None >>> print type(r) <type 'NoneType'> -- http://mail.python.org/mailman/listinfo/python-list