LogoYasir Bhutta
30:00
Question 1
1/20

What is the output of the following code?

Python
x = 10
def my_function():
    x = 5
    return x
print(my_function(), x)