Important Notice:

Course Content
Accepting Input from the Console
0/1
Introduction to Python (Chapter-3) M3-R5.1
About Lesson
Operators

ऐसे symbols जिनका उपयोग करके हम किसी निश्चित function को perform कर सकते है उन्हें आपरेटरस् कहते हैं। Generally operators कई प्रकार के होते है।

Operands (जिन पर operation कराया जा रहा है) में किसी भी प्रकार का Operation (काम) कराने के लिए Operators का उपयोग किया जाता हैं। 

पाइथन भाषा में कुल सात तरह के operators होते है-

  1. Arithmetic Operators- 

Mathematical operations जैसे जोड़ना, घटाना, गुणा, भाग करने के लिए +, -, ×, ÷ symbols का प्रयोग किया जाता है। इन्हें Arithmetical Operations कहते हैं।

  1. Relational Operators-

दो values को आपस में compare करने के लिए या उनके बीच में संबंध स्थापित करने के लिए जिन symbols का उपयोग किया जाता है उन्हें Relational Operators कहते है। ==, !=, <, >, <=, >= आदि relational operators के symbols हैं। इनके आउटपुट conditions के आधार पर true या false होते हैं।

  1. Logical Operators-

Logical operators, Boolean values को आपस में and एवं or operators से compare करके आउटपुट में Boolean value देते हैं। 

 

Operators

Operators are symbols that operate some operation on operands. Generally there are many types of operators.

Operators are used to perform any type of operation (work) on the operands (on which the operation is being performed).

There are total seven types of operators in Python language-

1. Arithmetic Operators- 

+, -, ×, ÷ symbols are used for mathematical operations like addition, subtraction, multiplication, division. These are called Arithmetical Operations.

2. Relational Operators-

The symbols that are used to compare two values or to establish a relationship between them are called Relational Operators. ==, !=, <, >, <=, >= etc. are symbols of relational operators. Their outputs are true or false depending on the conditions.

3. Logical Operators-

Logical operators compare Boolean values with each other with AND and OR operators and give Boolean value in the output.

error: Content is protected !!