9. What will be the output of following code ?
x, y = 4, 8 z = x/y*y print(z) # Output 4.0
9. What will be the output of following code ? 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 »
a = 12 b = 7.4 c = 1 a -= b print(a, b) a *= 2 + c print(a) b += a * c print(b) # Output 4.6 7.4 13.79999999999999999 21.2
8. What will be the output of following Python code ? Read More »