+ 2
What does return mean?
I think it means where it ends the def
3 odpowiedzi
+ 6
not necessarily. you can have more than one return. example
if (x > 5)
return 6
else
return 4
its just what the function will return
+ 3
a=4
b=5
return a+b
9
+ 1
return means to return the values where it is called