Suppose you have the following function:
def func(star="Sun", *moons, planet):
pass
The order of its parameters is wrong. Sort the parameters in the correct order: place the leftmost parameter at the top and the rightmost parameter at the end.
Note that star and planet will be positional arguments during the function call.