logo CodeStepByStep logo

list_mystery1

Language/Type: Python lists

What are the values of the elements in list a1 after the following code executes?

def mystery1(a1, a2):
    for i in range(0, len(a1)): 
        a1[i] += a2[len(a2) - i - 1]
a1 = [1, 3, 5, 7, 9]
a2 = [1, 4, 9, 16, 25]
mystery1(a1, a2)            
a1[0]
a1[1]
a1[2]
a1[3]
a1[4]

You must log in before you can solve this problem.

Log In

Need help?

Stuck on an exercise? Contact your TA or instructor.

If something seems wrong with our site, please

Is there a problem? Contact us.