Сколько элементов будет содержать множество a_set после выполнения программы? a_set = {1, 2, 3} print(a_set) a_set.update({2, 4, 6}) print(a_set) a_set.update({3, 6, 9}, {1, 2, 3, 5, 8, 13}) print(a_set) a_set.update([10, 20, 30]) print(a_set)
Задание

Сколько элементов будет содержать множество a_set после выполнения программы?
a_set = {1, 2, 3}
print\(a\_set\)
a_set.update\(\{2, 4, 6\}\)
print\(a\_set\)
a_set.update\(\{3, 6, 9\}, \{1, 2, 3, 5, 8, 13\}\)
print\(a\_set\)
a_set.update\(⟨0⟩\)
print\(a\_set\)