5 Dec 2020

Assignment Operators

                  Assignment operators are used in Python to assign values to variables.

                       

Example :
a = 21
b = 10
c = a + b
print("Line 1 - Value of c is ", c)c += a
print("Line 2 - Value of c is ", c)c *= a
print("Line 3 - Value of c is ", c)c /= a
print("Line 4 - Value of c is ", c)c = 2 c %= a
print("Line 5 - Value of c is ", c) c **= a
print("Line 6 - Value of c is ", c) c //= a
print("Line 7 - Value of c is ", c)

output:
Line 1 - Value of c is 31
Line 2 - Value of c is 52
Line 3 - Value of c is 1092
Line 4 - Value of c is 52.0
Line 5 - Value of c is 2
Line 6 - Value of c is 2097152 
Line 7 - Value of c is 99864

No comments:

Post a Comment

Operator precedence

           When an expression contains more than one operator, the order of evaluation depends on the order of operations.            The ac...