create a list and append in python code example
Example 1: python array append
my_list = ['a','b']
my_list.append('c')
print(my_list)
other_list = [1,2]
my_list.append(other_list)
print(my_list)
my_list.extend(other_list)
print(my_list)
Example 2: how to append to a list of lists in python
list_of_Lists = [[1,2,3],['hello','world'],[True,False,None]]
list_of_Lists.append([1,'hello',True])
ouput = [[1, 2, 3], ['hello', 'world'], [True, False, None], [1, 'hello', True]]
Example 3: python how to append to a list
your_list.append('element_to_append')
your_list = ['a', 'b']
your_list.append('c')
print(your_list)
--> ['a', 'b', 'c']
your_list = your_list.append('c')
Example 4: how to append list in python
list1 = ["hello"]
list1 = list1 + ["world"]