Q. Choose the correct option with reference to below Python code?
Code:
def fn(a): print(a) x=90 fn(x)
β
Correct Answer: (D)
x is the actual argument.
def fn(a): print(a) x=90 fn(x)
You must be Logged in to update hint/solution