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

 

 

Athenian: Variablesdivide1

prev  |  next  |  chance

Determine the value returned by the function.

def div(x):
    result = x / 2.0
    return result
Function Call  Return Value
div(1)        
div(-3)      
div(-2.5)  
div(9)        
div(1.5)    

Experiment with this code on Gitpod.io

⬅ Back