array append in 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: append python
List = ["One", "value"]
List.append("to add")
List2 = ["One", "value"]
List2 += ["to add"]
Example 4: python add element to array
my_list = []
my_list.append(12)
Example 5: append python
it=[]
for i in range(10):
it.append(i)
Example 6: python add all values of another list
a = [1, 2, 3]
b = [4, 5, 6]
a += b