+ 1
What does == mean in python??
4 Answers
+ 5
As mohamad hani told you ,
This is known as == equality operator .
It compares two values and find whether they are equal or not.
such as print(7==7)
Output : true
And print(7==4)
Output : false
Thanks
+ 2
It compares two values and if they are equal then the statement is true
a = 2
b = 2
If a == b:
print("true")
0
it means"="