python add array code example
Example 1: append element to an array python
x = ['Red', 'Blue']
x.append('Yellow')
Example 2: python array
array = ["1st", "2nd", "3rd"];
#prints: ['1st', '2nd', '3rd']
Example 3: python add element to array
my_list = []
my_list.append(12)
Example 4: python create array
variable = []
Example 5: append element an array in python
my_input = ['Engineering', 'Medical']
my_input.append('Science')
print(my_input)