Problem 3
How do functions help you reuse code in a program?
Problem 7
What does the phrase 鈥渃alling a function鈥 mean?
Problem 8
When a function is executing, what happens when the end of the function鈥檚 block is reached?
Problem 12
Is it permissible for a local variable in one function to have the same name as a local variable in a different function?
Problem 22
What is a library function?
Problem 23
Why are library functions like 鈥渂lack boxes鈥?
Problem 32
Look at the following function definition: def do_something(number): return number * 2 a. What is the name of the function? b. What does the function do? c. Given the function definition, what will the following statement display? print(do_something(10))