5.
[Python]
Which of the following are true of Python lists?
7.
[Python]
Which of the following will be the output of the given print statement:
def fun(x):
x[0] = 5
return x
g = [10,11,12]
print (fun(g), g)
Deselect Answer
9.
[Python]
Is list less secured than tuple? Why