how to append an asterisk, *, to the end of the line variable in python code example
Example: mulitplication symbo for unpacking in python
>>> numbers = [2, 1, 3, 4, 7]
>>> more_numbers = [*numbers, 11, 18]
>>> print(*more_numbers, sep=', ')
2, 1, 3, 4, 7, 11, 18