in python why
zero = 0
one = 1
if zero:
print('True') # this print nothing
if one:
print('True') # this print True
I thought when zero = 0
, this should be the correct one. should give me True
, but why nothing? If this is right, why when if one
, it gives me True
?