
- Python Basic Tutorial
- Python - Home
- Python - Overview
- Python - Environment Setup
- Python - Basic Syntax
- Python - Comments
- Python - Variables
- Python - Data Types
- Python - Operators
- Python - Decision Making
- Python - Loops
- Python - Numbers
- Python - Strings
- Python - Lists
- Python - Tuples
- Python - Dictionary
- Python - Date & Time
- Python - Functions
- Python - Modules
- Python - Files I/O
- Python - Exceptions
Difference between == and is operator in python.
is and equals(==) operators are mostly same but they are not same. is operator defines if both the variables point to the same object whereas the == sign checks if the values for the two variables are the same.
Example Code
# Python program to # illustrate the # difference between # == and is operator # [] is an empty list list1 = [] list2 = [] list3=list1 if (list1 == list2): print("True") else: print("False") if (list1 is list2): print("True") else: print("False") if (list1 is list3): print("True") else: print("False")
Output
True False True
- Related Articles
- Explain difference between == and is operator in Python.
- Difference between != and is not operator in Python
- What is the difference between operator and method on Python set?
- Difference between "new operator" and "operator new" in C++?
- Difference between == and === operator in JavaScript
- Difference between !== and ==! operator in PHP
- What is the difference between working of append and + operator in a list in Python?
- Difference between concat() and + operator in Java
- Difference between != and !== operator in JavaScript Program
- Difference between the and$ operator in php
- Difference between the AND and && operator in php
- Difference between the Ternary operator and Null coalescing operator in php
- What is the difference between the dot (.) operator and -> in C++?
- What is the difference between equals() method and == operator in java?
- Difference between the | and || or operator in php

Advertisements