appending array in python code example
Example 1: append element to an array python
x = ['Red', 'Blue']
x.append('Yellow')
Example 2: append python
List = ["One", "value"]
List.append("to add") # "to add" can also be an int, a foat or whatever"
#List is now ["One", "value","to add"]
#Or
List2 = ["One", "value"]
# "to add" can be any type but IT MUST be in a list
List2 += ["to add"] # can be seen as List2 = List2 + ["to add"]
#List2 is now ["One", "value", "to add"]
Example 3: append element an array in python
my_input = ['Engineering', 'Medical']
my_input.append('Science')
print(my_input)
Example 4: how to extend an array python
my_list = ['geeks', 'for']
another_list = [6, 0, 4, 1]
my_list.extend(another_list)