python add to array code example
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: append item to array python
data = []
data.append("Item")
print(data)
Example 4: python array
array = ["1st", "2nd", "3rd"];
#prints: ['1st', '2nd', '3rd']
Example 5: python add element to array
my_list = []
my_list.append(12)
Example 6: how to create an array in python
array = ["1st", "2nd", "3rd"]
#prints: ['1st', '2nd', '3rd']
array.append("4th")
#prints: ['1st', '2nd', '3rd', '4th']