[solved] – Question 92368
def mystery(l):
l = l + l
return()
mylist = [22,34,57]
mystery(mylist)
value of mylist after execution of function
Expert Answer
OR
def mystery(l):
l = l + l
return()
mylist = [22,34,57]
mystery(mylist)
value of mylist after execution of function
OR