how to push item to array python code example
Example 1: append element to an array python
x = ['Red', 'Blue']
x.append('Yellow')
Example 2: python add element to array
my_list = []
my_list.append(12)
Example 3: how to push item to array python
mylist = list()
mylist.append(1)
mylist.append(2)
mylist.append(3)
print(mylist)
>>> [1,2,3]