Top 10 Programming Languages to Learn in 2019

Programming

Python Comparision Operators – Python Basics

python-programming-670x335

Comparison Operators in python are pretty straight forward if you have any sort of background in Mathematics.

First we’ll present a table of comparison operators and then work through some examples:

OperatorDescriptionExmple
==if two values of the operands are equal,
then the condition becomes true
‘1’ == ‘1’ is true
!=if two values of the operands are not equal,
then condition becomes true
‘1’ != ‘2’ is true
>If the value of the left operand is greater
than the value of the right operand,
then the condition becomes true.
2 > 1 is true
<If the value of the right operand is greater
than the value of the left operand,
then the condition becomes true.
2 < 1 is false
>= If the value of the left operand is greater
or equal to the value of the right operand,
then the condition becomes true.
2 >= 1 is true
<= If the value of the right operand is greater
or equal to the value of the left operand,
then the condition becomes true.
2 <= 1 is false

Examples

Python 3.6.4 (v3.6.4:d48eceb, Dec 19 2017, 06:04:45) [MSC v.1900 32 bit (Intel)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> 1 <= 2
True
>>> 2 >= 3
False
>>> 1 == 1
True
>>> 'a' == 1
False
>>> type('a') == str
True
>>> 
Related posts
ProgrammingPythonPython Basic Tutorial

Mastering Print Formatting in Python: A Comprehensive Guide

ProgrammingPython

Global Variables in Python: Understanding Usage and Best Practices

ProgrammingPythonPython Basic Tutorial

Secure Your Documents: Encrypting PDF Files Using Python

ProgrammingPython

Creating and Modifying PDF Files in Python: A Comprehensive Guide with Code Examples

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.