1. What is the output of the below program due to line 7?x = 50def func(x): print('x is', x) x = 2 print('Changed local x to', x)func(x)print('x is now', x)
The time limit has expired and your responses have been submitted.