+ 1
please explain
i = (not 1 > 100) print(int(i) == 1) print(int(i) > 7) out put: true false. why?
2 odpowiedzi
+ 1
Hy it's very simple dude.. !!
First condition 1:
i=(not 1>100) //this condition is true. True means 1 (i=1)
Second condition 2:
int(i)==1 //this condition also true.. Bcoz 1==1
Third condition 3:
Int(i)>7 //this condition is false.. i=1 ... So 1>7 => this condition is false..
That's all
0
I = (not 1>100) # it is True
Int(i) == 1 ( coz True == 1 and False == 0)
So print (1==1) # it is True
Print (1>7) # it is False