I am new to python I am currently enrolled in beginner python at my local college. This is a requirement for my ICS degree. I had a quiz yesterday with the question "What of the following is an argument. I know that def register_for_class(studen_id, crn): is the parameter, and I know the function call is the argument but is anything else considered an argument? My teacher won't tell me. she just says that there is more than function call as an argument.
def register_for_class(student_id, crn): # parameter
add_class(student_id, crn, 2022, 'Spring')
student_name = get_name(student_id)
class_name = get_class(crn)
msg = student_name + ' is now enrolled in: ' + class_name
return msg
register_for_class(19283746, 22319) # function call
parameters/argumentsinterchageably, "The actual parameters (arguments) to a function call are introduced in the local symbol table of the called function when it is called" - a little more verbose than necessary, but it makes the slight distinction clear that a function call passesargumentsto the function definition to match them with the definitionsparameters.