Buildin Function Python Tutorial

print bool(1)
print bool(True)
print bool(0)
print bool('1')
print bool('0')
print bool([])
print bool ( (1,) )