We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5ba227 commit 268c957Copy full SHA for 268c957
#8_Python_Assignment_Compound_Operator.py
@@ -23,23 +23,23 @@
23
print ("c value is ",c)
24
25
c = a + b
26
-print ("Line 1 - Value of c is (c=a+b) ", c)
+print (" Value of c is (c=a+b) ", c)
27
28
c += a
29
-print ("Line 2 - Value of c is (c +=a)", c)
+print (" Value of c is (c +=a)", c)
30
31
c *= a
32
-print ("Line 3 - Value of c is (c *=a)", c)
+print (" Value of c is (c *=a)", c)
33
34
c /= a
35
-print ("Line 4 - Value of c is (c /=a)", c)
+print (" Value of c is (c /=a)", c)
36
37
c = 2
38
c %= a
39
-print ("Line 5 - Value of c is (c %=a)", c)
+print (" Value of c is (c %=a)", c)
40
41
c **= a
42
-print ("Line 6 - Value of c is (c **= a) ", c)
+print (" Value of c is (c **= a) ", c)
43
44
c //= a
45
-print ("Line 7 - Value of c is (c //=a)", c)
+print (" Value of c is (c //=a)", c)
0 commit comments