Lesson 23: Returning Results From Functions With Return
What happens when a calculator receives two numbers but needs to send the answer back for another part of a programme to use? A Python function can do something similar: it receives information, processes it and sends a result back to the code that called it. This section develops the central idea of information flowing into a function and a return value flowing out again.
