Functions and Modular Programming
What keyword is used to define a function in Python?
Write a function called 'greet' that takes a name parameter and returns "Hello, [name]!":
What does the 'return' statement do in a function?
Functions can have multiple parameters separated by commas.
What happens if you call a function without providing all required parameters?