Problem 4 (5 pts) What are x, y, and z after running the below block of code? X = 0 y = -10 Z = -3*y + 5 if x > 2: y = 1
Posted: Mon May 02, 2022 12:22 pm
Problem 4 (5 pts) What are x, y, and z after running the below block of code? X = 0 y = -10 Z = -3*y + 5 if x > 2: y = 10 if z < 5: z = 0