logo CodeStepByStep logo

return_mystery1

Language/Type: Python parameters

The following console program uses returns and produces three lines of output. What are they?

def mystery(b, c):
    return c + 2 * b

def main():
    a = 4
    b = 2
    c = 5

    a = mystery(c, b)
    c = mystery(b, a)
    print(a)
    print(b)
    print(c)

main()
line 1
line 2
line 3

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.