10. Make change in the expression for z of previous question so that the output produced is zero. You cannot change the operators and order of variables. (Hint. Use a function around a sub-expression)

x, y = 4, 8
z = x/y*y
print(z)

Ans:
x, y = 4, 8
z = x/y*y and 0
print(z)