Section 3. Chapter 9
single
Challenge: Power-up the Hero
Swipe to show menu
Task
Swipe to start coding
Create a factory function that generates custom power-ups for a hero. Each power-up should remember its own multiplier and apply it to a hero's base stat, demonstrating closure behavior by allowing the inner function to remember the multiplier provided to the outer function.
- Define an inner function inside
create_power_upthat takes a single argumentbase_statand multiplies it bymultiplier. - Return this inner function from
create_power_up. - Use
create_power_upto create two power-ups: one that doubles and one that triples a stat. - Apply these power-ups to a hero's
attackanddefensestats and print the results.
Solution
Everything was clear?
Thanks for your feedback!
Section 3. Chapter 9
single
Ask AI
Ask AI
Ask anything or try one of the suggested questions to begin our chat