py array append 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)
x = ['Red', 'Blue']
x.append('Yellow')
my_list = []
my_list.append(12)