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 23
23
print ("c value is " ,c )
24
24
25
25
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 )
27
27
28
28
c += a
29
- print ("Line 2 - Value of c is (c +=a)" , c )
29
+ print (" Value of c is (c +=a)" , c )
30
30
31
31
c *= a
32
- print ("Line 3 - Value of c is (c *=a)" , c )
32
+ print (" Value of c is (c *=a)" , c )
33
33
34
34
c /= a
35
- print ("Line 4 - Value of c is (c /=a)" , c )
35
+ print (" Value of c is (c /=a)" , c )
36
36
37
37
c = 2
38
38
c %= a
39
- print ("Line 5 - Value of c is (c %=a)" , c )
39
+ print (" Value of c is (c %=a)" , c )
40
40
41
41
c **= a
42
- print ("Line 6 - Value of c is (c **= a) " , c )
42
+ print (" Value of c is (c **= a) " , c )
43
43
44
44
c //= 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