Menu
×
×
Correct!
Exercise:If you do not know the number of keyword arguments that will be passed into your function, there is a prefix you can add in the function definition, which prefix?
def my_function(@(2)kid):
print("His last name is " + kid["lname"])
def my_function(**kid):
print("His last name is " + kid["lname"])
Not CorrectClick here to try again. Correct!Next ❯ |
This will reset the score of ALL 95 exercises.
Are you sure you want to continue?