+ 4
what does == mean ???
in new to this
14 Answers
+ 5
"equal to", for example, this statement
if x == 7:
Means "If variable X is equal to seven"
+ 1
it can return true or false. if you print (3==5)you will see "false".because 3 isn't equal to 5.if you print (5==t) it will display true.if you know what "return" mean,you can understand it.the codes is replaced by a value.this value is true or false.
+ 1
It's pretty much like a question. for example is 3==5? with that would give you false statement because 3 is not equal to 5.
+ 1
What is mean by i== ???
+ 1
It means (equal to)
it is used for comparison .
0
of course. it can be used as a contrast between two variables.
0
A==B .its mean compare A with B.if equal return a boolean value true.else return false.
0
its equal to that (number). Here is the best example i can give you. i am learning myself. (5==5) yes this is True. (5==6) this is going to False. Hope that helped
0
== sign mean that "comparatively equal to"
so when u say 5 == 5 is 5 is comparatively equal to 5 and the same applies to strings for example "dad" == "dad" .. :)
0
it means equal to
0
so == (boolean) is used instead of = because it's in a comparison?
0
"==" is used to compare to integers or strings. If the values on either side are the same(equal), than the program returns "True". If they're different(unequal), the program returns "False".
0
"=" is an assignment operator
"==" is a comparison operator (value)
"===" is an absolute comparison operator (datatype and value)
0
it means equal to