Important Notice:

Course Content
Operators, Expression & Python Statement (Chapter-4) M3-R5.1
About Lesson
Relational /Conditional Operators:-

          Comparison Operators दी हुई दो values को compare करके Boolean value True / False return करते हैं। Python में Comparison Operators को कुछ इस तरह से use कर सकते हैं।

Operator

Name

Example

Description

==

Equal

x = = y

यदि दोनों operands की वैल्यू समान होती है तो condition true होती है

!=

Not equal

x != y

यदि दोनों operands की वैल्यू समान नहीं होती है तो condition सत्य होती है

Less than

x < y

यदि right operand की वैल्यू left operand से बड़ी होती है तो condition सत्य होती है

Greater than

x > y

यदि left operand की वैल्यू right operand से बड़ी होती है तो condition सत्य होती है

<=

Less than or equal

x <= y

यदि right operand की वैल्यू left operand से बड़ी होती है या छोटी होती है तो condition सत्य होती है

>=

Greater than or equal

x >= y

यदि left operand की वैल्यू right operand से बड़ी होती है या बराबर होती है तो condition सत्य होती है

 

Relational /Conditional Operators:-

          Comparison Operators compare two given values and return the Boolean value True / False. Comparison Operators can be used in Python in this way.

Operator

Name

Example

Description

==

Equal

x = = y

If both operands have the same value then the condition is true.

!=

Not equal

x != y

If the value of both operands is not equal then the condition is true.

Less than

x < y

If the value of right operand is greater than that of left operand then the condition is true.

Greater than

x > y

If the value of left operand is greater than the right operand then the condition is true.

<=

Less than or equal

x <= y

If the value of right operand is greater or less than the left operand then the condition is true.

>=

Greater than or equal

x >= y

If the value of left operand is greater than or equal to the right operand then the condition is true.

error: Content is protected !!