2025/2026 Graded A+
Which Python keyword indicates the start of a function definition? - def
In Python, how do you indicate the end of the block of code that makes up the function? - You de-
indent a line of code to the same indent level as the def keyword
In Python what is the input() feature best described as? - a built in function
What does the following code print out?
def thing():
print('Hello')
print('There') - There
In the following Python code, which of the following is an "argument" to a function?
x = 'banana'
y = max(x)
print(y) - x
What will the following Python code print out?
ef func(x) :
print(x)
func(10)
func(20) - 10
20
Which line of the following Python program will never execute?
def stuff():
print('Hello')