[solved] – Question 79945
What is the value of mylist after the following lines are executed?
def mystery(l):
l = l + l
return()
mylist = [31,24,75]
mystery(mylist)
Expert Answer
OR
What is the value of mylist after the following lines are executed?
def mystery(l):
l = l + l
return()
mylist = [31,24,75]
mystery(mylist)
OR