Read the following Python code carefully and point out the global variables?
y, z = 1, 2def f(): global x x = y+z
y, z = 1, 2def f(): global x x = y+zRead the following Python code carefully and point out the global variables?
y, z = 1, 2def f(): global x x = y+z Correct Answer x, y and z
মোঃ আরিফুল ইসলাম
Feb 20, 2025