Skip to content

Commit 268c957

Browse files
committed
cosmetic changes
1 parent c5ba227 commit 268c957

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

#8_Python_Assignment_Compound_Operator.py

+7-7
Original file line numberDiff line numberDiff line change
@@ -23,23 +23,23 @@
2323
print ("c value is ",c)
2424

2525
c = a + b
26-
print ("Line 1 - Value of c is (c=a+b) ", c)
26+
print (" Value of c is (c=a+b) ", c)
2727

2828
c += a
29-
print ("Line 2 - Value of c is (c +=a)", c)
29+
print (" Value of c is (c +=a)", c)
3030

3131
c *= a
32-
print ("Line 3 - Value of c is (c *=a)", c)
32+
print (" Value of c is (c *=a)", c)
3333

3434
c /= a
35-
print ("Line 4 - Value of c is (c /=a)", c)
35+
print (" Value of c is (c /=a)", c)
3636

3737
c = 2
3838
c %= a
39-
print ("Line 5 - Value of c is (c %=a)", c)
39+
print (" Value of c is (c %=a)", c)
4040

4141
c **= a
42-
print ("Line 6 - Value of c is (c **= a) ", c)
42+
print (" Value of c is (c **= a) ", c)
4343

4444
c //= a
45-
print ("Line 7 - Value of c is (c //=a)", c)
45+
print (" Value of c is (c //=a)", c)

0 commit comments

Comments
 (0)