我是 python 新手,我不确定if
条件的规则:
条件一:
if 0:
Print "true"
output:
条件二:
if -1:
Print "true"
output: true
条件 3:
if 1:
Print "true"
output: true
我将解释我的代码,
条件 1:它没有打印语句,因为它被视为 false(boolean)
条件 2:它打印语句,因为它被视为 true(boolean)
为什么它取真,它是负值(我的假设它只取假)?
条件 3:它打印语句,因为它被视为 true(boolean)。