0
When we have to use = and when == ?
2 Answers
+ 2
If we want to assign value to variable, we use '='. When we want to check if two statements have the same value, we use '==', which returns 'True' if values are equal and 'False' otherwise.
0
well thanks for the answer