Important Notice:

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

            Arithmetic Operators का उपयोग numeric values के साथ common mathematical ऑपरेशन को perform करने के लिए किया जाता है।

Operator

Name

Example

Description

+

Addition

x + y

इसका उपयोग दो ऑपरेंड को जोड़ने के लिए किया जाता है

Subtraction

x – y

इसका उपयोग पहले ऑपरेंड से दूसरे ऑपरेंड को घटाने के लिए किया जाता है

*

Multiplication

x * y

इसका उपयोग एक ऑपरेंड को दूसरे के साथ गुणा करने के लिए किया जाता है

/

Division

x / y

यह दूसरे ऑपरेंड द्वारा पहले ऑपरेंड को divide करने के बाद भागफल देता है

%

Modulus

x % y

यह पहले ऑपरेंड को दूसरे ऑपरेंड से divide करने के बाद रिमाइंडर लौटाता है

**

Exponentiation

x ** y

यह एक एक्सपोनेंट ऑपरेटर है जिसका प्रतिनिधित्व दूसरे ऑपरेंड के लिए पहली ऑपरेंड पावर की गणना के रूप में किया जाता है

//

Floor division

x // y

यह दो ऑपरेंड को विभाजित करके उत्पन्न भागफल का न्यूनतम मान देता है

 
Arithmetic operator:-

            Arithmetic operators are used to perform common mathematical operations with numeric values.

Operator

Name

Example

Description

+

Addition

x + y

It is used to add two operands

Subtraction

x – y

It is used to subtract the second operand from the first operand.

*

Multiplication

x * y

It is used to multiply one operand with another

/

Division

x / y

It returns the quotient after dividing the first operand by the second operand.

%

Modulus

x % y

It returns the reminder after dividing the first operand by the second operand.

**

Exponentiation

x ** y

It is an exponent operator represented as the calculation of the first operand power to the second operand.

//

Floor division

x // y

It gives the minimum value of the quotient produced by dividing two operands.

error: Content is protected !!