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?
# if we do not know the number of agruments that will be passed in our funtion we use(*)
def my_function(*kids):
print("The youngest child is " + kids[2])