- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How does == operator works in Python 3?
The == symbol is defined as equality operator. It returns true if expressions on either side are equal and false if they are not equal
>>> (10+2) == 12 True >>> 5*5 == 5**2 True >>> (10/3)==3 False >>> 'computer'=="computer" True >>> 'COMPUTER'.lower()=='computer' True
- Related Articles
- How Ternary operator in PowerShell Works?
- How does * operator work on list in Python?
- How does digital thermometer works?
- How does in operator work on list in Python?
- How does concatenation operator work on list in Python?
- How does repetition operator work on list in Python?
- How does concatenation operator work on tuple in Python?
- How does Constraint Layout works in android?
- How does DES works in Information Security?
- How does Steganography works in Information Security?
- How does jQuery event namespace works?
- How does JavaScript focus() method works?
- How does Secure Hash Algorithm works?
- How does the MD5 Algorithm works?
- How does the * operator work on a tuple in Python?

Advertisements