Answers for "what is == and is in python"

1

== in python

The == operator compares the values of both the operands and checks for value equality. Whereas is operator checks whether both the operands refer to the same object or not. ... Hence list1 and list2 refer to different objects. We can check it with id() function in python which returns the “identity” of an object.
Posted by: Guest on April-06-2020

Code answers related to "what is == and is in python"

Python Answers by Framework

Browse Popular Code Answers by Language