In the Python console:
>>> a = 0 >>> if a: ... print \"L\" ... >>> a = 1 >>> if a: ... print \"L\" ... L >>&g
I think it just judges by 0 or not 0:
>>> if 0: print 'aa' >>> if not 0: print 'aa' aa >>>