Example 1: append element to an array python
x = ['Red', 'Blue']
x.append('Yellow')
Example 2: python array append
my_list = ['a','b']
my_list.append('c')
print(my_list) # ['a','b','c']
other_list = [1,2]
my_list.append(other_list)
print(my_list) # ['a','b','c',[1,2]]
my_list.extend(other_list)
print(my_list) # ['a','b','c',[1,2],1,2]
Example 3: python array
array = ["1st", "2nd", "3rd"];
#prints: ['1st', '2nd', '3rd']
Example 4: python add element to array
my_list = []
my_list.append(12)
Example 5: python arrays
array = [1,2,3,4,5]
print(array,array[0],array[1],array[2],array[3],array[4]
#Output#
#[1,2,3,4,5] 1 2 3 4 5
Example 6: how to appending something in array python
my_list.extend([1,2,3,4])
my_list
--> [12,1,2,3,4]