What will be displayed by the following code?
def f(value, values):
v = 1
values[ 0 ] = 44
t = 3
v = [ 1 , 2 , 3 ]
f(t, v)
print (t, v[ 0 ])
|
(A) 1 1
(B) 1 44
(C) 3 1
(D) 3 44
Answer: (D)
Explanation: The value of t=3 is passed in function f(value,values) , v [list] is passed as values in the same function. The v is stored in values and values[0]=44 , changes the value at index[‘0’] in the list hence v=[44,2,3].
Quiz of this Question