id/email
password
forgot password | create account
about | help | prefs
ReadingBatcode reading practice

 

 

Athenian: Variablesexponent1

prev  |  next  |  chance

Determine the value returned by the function.

def exp(x, y):
    result = x ** y
    return result
Function Call  Return Value
exp(2, 3)  
exp(5, 1)  
exp(20, 0)
exp(6, 2)  

Experiment with this code on Gitpod.io

⬅ Back