/ Published in: Python
Expand |
Embed | Plain Text
>>> bool('spam') True >>> bool('') False >>> bool([]) False >>> bool({}) False >>> bool(1) True >>> bool(0.0) False >>> bool(None) False
You need to login to post a comment.
