✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Що виведе цей код?
def add_to_list(item, my_list=[]):
my_list.append(item)
return my_list
print(add_to_list(1))
print(add_to_list(2))