add value to array python code example
Example 1: append element to an array python
x = ['Red', 'Blue']
x.append('Yellow')
Example 2: append item to array python
data = []
data.append("Item")
print(data)
Example 3: python add item to list
# to add an item to a list
list.append(item)
# To extend an list with a new list
list1.extend(list2)
Example 4: python add element to array
my_list = []
my_list.append(12)