Почему здесь перед n стоит *?

def create_phone_number(n):
    print("({}{}{}) {}{}{}-{}{}{}{}".format(*n))

create_phone_number([1, 2, 3, 4, 5, 6, 7, 8, 9, 0])

Ответы (0 шт):