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