Login
Remember
Register
Ask a Question
What will be displayed by the following code?
0
votes
asked
Feb 11, 2020
in
Python
by
rahuljain1
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])
1 1
1 44
3 1
3 44
3.
Python-questions-answers
Please
log in
or
register
to answer this question.
0
Answers
...