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(**kid):
print("His last name is " + kid["lname"])
Not CorrectClick here to try again. Correct!Next ❯def my_function(kid): print("His last name is " + kid["lname"]) |