How to cat None

rtilley rtilley at vt.edu
Tue Feb 14 22:55:11 EST 2006


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'>



More information about the Python-list mailing list