Computer Science, asked by indirasebastian8527, 9 months ago

In python, how do you indicate the end of the block of code that makes up the function?

Answers

Answered by oOMimosaoO
1

A return statement effectively ends a function; that is, when the Python interpreter executes a function's instructions and reaches the return , it will exit the function at that point

Similar questions