Post

@PythonPr is : checks if vars share the same memory address
=> no
English

@PythonPr The is operator tells whether a and b are found at the same location in memory. They do not, so 'no'.
English

@PythonPr Answer: no
The real trap: overcomplicating it.
› a=10 and b=20 are just different values
› even a == b the result is False
For beginners: sometimes the answer is simply: 10 isn't equal 20
English















