0
What is the meaning ?
What is the meaning of ==? Like. Num ==7
4 Réponses
+ 3
It is the equality operator. It is used to check if the left side = right side. If yes it is true else false
+ 3
Please refer to the lesson on this:
https://www.sololearn.com/learn/JUMP_LINK__&&__Python__&&__JUMP_LINK/2276/
+ 1
== is a equality symbol
It means 1==1,4==4 ...like that
Ur question is Num == 7 means, if Num= 7 output is true (1), otherwise false (0).
+ 1
thanks