MATH 314 Quiz 03

Given on 2026-08-31

  1. Write a Python function with one positional argument and one keyword argument with a default value.

  2. Call the function without the specifying the keyword argument.

  3. Call the function with the keyword argument specified and with a value different from the default.

  4. Write code using a Python for loop to sum the numbers from 1 to 11.

  5. Define a list containing at least three things. Write a for loop to iterate over your list, printing each item in the list.