Computer Science, asked by wargautammeena, 2 months ago

What is the difference between the following Python statements :

Z = 10 *2 ​

Answers

Answered by TheBrainlyKing1
1

Explanation:

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