Module 1 · Learning to Drive
Lesson 10 · Python Functions — Knowledge Checks
Name Date
Which keyword defines a function in Python?
Answer Why?
Given def square(side_length):, what does calling square(45) make the robot do?
Answer Why?
A variable created inside a function (like angle above) can be used…
Answer Why?
What's wrong with this? def multiply(x, y)
Answer Why?