Functions – Return Values
return sends a value back from a function to the caller
What it does: The returned value is stored in 'result'. result = 10. Functions can return booleans. n % 2 == 0 is True when n is even. return passes a value out of the function — print only displays it. add() returns 3+5=8, which is stored in result. double(5) returns 5*2=10, then print() displays it. A returned value can be used anywhere a value is expected. return immediately exits the function — any code after it is unreachable. 4 % 2 = 0, so 0 == 0 is True.
Common mistakes: Using print instead of return: result will be None because print doesn't send back a value. Code after return never runs: move print before return.
Free printable worksheet with full answer key — or add this module to a journey and assign it to your class.
Take this worksheet further — free with Cloodit
Each concept is reinforced from every angle — learned, then applied, then tested.
Cloodit turns curriculum-aligned coding content into journeys students work through one biome at a time.
Over 100 of them, across seven natural biomes.
Turns their work into revision material ready for Flash Cards and Exam study.
Live, competitive practice for the start of the lesson or a teacher-led lesson finisher.
Honour your top performers, or encourage a student who's trying hard — ready to print in seconds.
Quick Questions
Match the Pairs
Key Term
returnFill in the Blanks
Spot the Error
Create a free class, add this module to a journey, and track who's stuck.
Create a free teacher account →No credit card. No setup fee. Make a class and invite students in under three minutes.
Practice this topic interactively, track progress, and unlock badges.
Start Learning Free →