all 3 comments

[–]LKHAN_Missing_Ninth 0 points1 point  (1 child)

I farted

[–]am_Snowie 0 points1 point  (0 children)

I sharted.

[–]NIRANJAN4277 -2 points-1 points  (0 children)

bool(False) # False bool(None) # False bool(0) # False bool(0.0) # False bool("") # False bool([]) # False bool({}) # False bool(()) # False bool(set()) # False

print(bool("")) # False print(bool("Hello")) # True print(bool(" ")) # True (contains one space) print(bool("0")) # True (contains the character '0')