6. What will be output produced by following code ? State reason,
a = 5 – 4 – 3 b = 3**2**3 print(a) print(b) # Output -2 6561
6. What will be output produced by following code ? State reason, Read More »
a = 5 – 4 – 3 b = 3**2**3 print(a) print(b) # Output -2 6561
6. What will be output produced by following code ? State reason, Read More »
x, y = 4, 8 z = x/y*y print(z) # Output 4.0
9. What will be the output of following code ? Read More »