Functions can have default arguments, meaning if you didn’t provide a value for that parameter, it will resort on using the default value set in the function definition.
Adding items to a list in Python can be done in two methods: using the built-in function of the list called append, which can add one item on the end of the list.
Defining a function in Python requires the keyword def followed by the function name, a pair of parentheses that will contain the parameters passed on the function and a colon.