File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 2323print ("c value is " ,c )
2424
2525c = 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
2828c += a
29- print ("Line 2 - Value of c is (c +=a)" , c )
29+ print (" Value of c is (c +=a)" , c )
3030
3131c *= a
32- print ("Line 3 - Value of c is (c *=a)" , c )
32+ print (" Value of c is (c *=a)" , c )
3333
3434c /= a
35- print ("Line 4 - Value of c is (c /=a)" , c )
35+ print (" Value of c is (c /=a)" , c )
3636
3737c = 2
3838c %= a
39- print ("Line 5 - Value of c is (c %=a)" , c )
39+ print (" Value of c is (c %=a)" , c )
4040
4141c **= a
42- print ("Line 6 - Value of c is (c **= a) " , c )
42+ print (" Value of c is (c **= a) " , c )
4343
4444c //= a
45- print ("Line 7 - Value of c is (c //=a)" , c )
45+ print (" Value of c is (c //=a)" , c )
You can’t perform that action at this time.
0 commit comments