6.
[Python]
Which of the following are true of Python lists?
Multiple may be correct
13.
[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
15.
[Python]
Is list less secured than tuple? Why