What will the following program display? def main():
x = 1 y = 3.4 print(x, y) change_us(x, y) print(x, y)def change_us(a, b): a = 0 b = 0print(a, b) main()
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.