Python Relational Operators or Comparison Operators

Python Relational Operators:

We can use the PyCharm code editor for this example. If you do not know about it then follow this link- How to install PyCharm for Python and create a program in it.

(1) These operators are also called Comparison Operators. These operators are used to do comparisons. In some expressions, it is required to compare the variables or constants. These operators always result in a Boolean value (True or False). In Python, the non-zero value is treated as true and the zero value is treated as false.

OperatorName
==Equal
!=Not Equal
>Greater Than
<Less Than
>=Greater Than or Equal To
<=Less Than or Equal To

(2) Example of Equal Operator.

equal operator Python return true
Equal operator python return false

(3) Example of Not Equal Operator.

Not Equal Operator Python return true
Not Equal Operator Python return false

(4) Example of Greater Than and Less Than Operator.

Greater Than Operator Python Return False
Less Than Operator Python Return True

(5) Example of Greater Than or Equal To and Less Than or Equal To Operator.

  • Greater Than or Equal To (>=)- If the value of the left-side operand is greater than or equal to the value of the right-side operand, then the condition is True, otherwise it is False.
  • Less Than or Equal To (<=)- If the value of the left operand is less than or equal to the value of the right operand, then is True otherwise it is False.
Greater Than or Equal To Operator in Python
Less Than or Equal To Operator in Python

Python Arithmetic Operators
String Concatenation in Python
How to Create Variables in Python
MySQL Tutorial
Computer Software and Hardware
Application Software
Database Models or Data Models
Python (programming language)– Wikipedia

Comments (No)

Leave a Reply