is not : Is : Operator PYTHON TUTORIALS


PYTHON TUTORIALS » Operator » Is »

 

is not


x = [123]
y = [24]
x is not y

# Use == to see if two objects are equal, and use is to see if they are identical (the same object).



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON TUTORIALS

 Navioo Operator
» Is