Question: What does this code print? X = 0 y = 0 for i in range(1,6): for j in range(i+1): y += 1 if y

What does this code print? X = 0 y = 0 for i in range(1,6): for j in range(i+1): y += 1 if y % 2: X+=1 print("x", x, "y", y)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
