py array append arrayvalue code example
Example: append element an array in python
my_input = ['Engineering', 'Medical']
my_input.append('Science')
print(my_input)
my_input = ['Engineering', 'Medical']
my_input.append('Science')
print(my_input)