Как добавить элемент в список в Pithon
months = ['January', 'February', 'March']
months.append('April')
print(months)
Ugly Unicorn
months = ['January', 'February', 'March']
months.append('April')
print(months)
#testing