1Asterisks for unpacking into function call
2That print(*fruits) line is passing all of the
3items in the fruits list into the print
4function call as separate arguments, without
5us even needing to know how many arguments are in the list.
6... Both * and ** can be used multiple times in function calls