0
Is there default system already?
when i type 9==9, it says true 9==8, it says false
3 Respostas
+ 2
Yes, it is explained in the Boolean logic chapter, the '==' sign checks if the two values are equal and returns True or False
+ 1
explanation :
is 9 "is equal to " 9?? (9 == 9): TRUE,,
it is true, because 9 is equal to it self,
then 9 " is equal to " 8 ?? (9 == 8): FALSE,,
it is false, because 9 is not equal to 8,
this comparison (==) indicates to "is equal to".
0
should have been more careful, thank you!