python array.append code example
Example 1: append element to an array python
x = ['Red', 'Blue']
x.append('Yellow')
Example 2: append python
it=[]
for i in range(10):
it.append(i)
Example 3: append element an array in python
my_input = ['Engineering', 'Medical']
my_input.append('Science')
print(my_input)