add elements in 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 array
array = ["1st", "2nd", "3rd"];
#prints: ['1st', '2nd', '3rd']
Example 4: arrays python
array = [1, 2, 3, 4]
array.append(5)
for i in array:
print(i)