how to append 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: append element an array in python
my_input = ['Engineering', 'Medical']
my_input.append('Science')
print(my_input)