add an element to an 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: python array usage
arr = [0,1,2]
print(arr[0])
Example 5: append element an array in python
my_input = ['Engineering', 'Medical']
my_input.append('Science')
print(my_input)