A required function parameter isn't provided while calling the function. This is an error.
def add_student(student, section):
students[section].append(student)
add_student("Aaron") # Missing parameter `section`
def add_student(student, section):
students[section].append(student)
add_student("Aaron", "10A")