Bridge Academy.
← BACK TO MATERIALS
WEEK 05 · APRIL 28, 2026

Python Functions · Week 2 — Functions with Parameters (Practice)

30 questions on parameters; spiral review of Week 1; 5 challenge questions.

Python Coding Practice: Python Functions Week 2: Functions That Take Information (Level 1)

In this set of practice questions, you'll write functions that accept input (parameters) to do specific tasks.

Each function should take the required information and return the correct result.

You will solve each problem by writing your own Python code.

Reminder

- Define a function with def function_name(parameter1, parameter2):. - When calling the function, pass the correct number of arguments in parentheses. - Use return to send a value back from the function. - Make sure your function returns the expected data type (e.g., string, number, list).

Preview truncated — download the notebook to see the full lesson.