what happens when equality operation a==10 is given in the question and we have to find the value of assignment operator a=4 question is when a==10and b=3 find a=5||b>50
Answers
Answered by
0
Answer:
hope it helps u
Explanation:
Image result for what happens when equality operator a==10 is given in the question and we have to find the value of assignment operator a=4 question is when a==10 and b=3 find a=5||b>50
The == operator compares the value or equality of two objects, whereas the Python is operator checks whether two variables point to the same object in memory. In the vast majority of cases, this means you should use the equality operators == and != , except when you're comparing to None .
Similar questions