how to append in array in python code example
Example 1: append element to an array python
x = ['Red', 'Blue']
x.append('Yellow')
Example 2: python add all values of another list
a = [1, 2, 3]
b = [4, 5, 6]
a += b
# another way: a.extend(b)
x = ['Red', 'Blue']
x.append('Yellow')
a = [1, 2, 3]
b = [4, 5, 6]
a += b
# another way: a.extend(b)