add element to array pyhton code example
Example 1: append element to an array python
x = ['Red', 'Blue']
x.append('Yellow')
Example 2: append element an array in python
my_input = ['Engineering', 'Medical']
my_input.append('Science')
print(my_input)