pythonlist append code example
Example 1: how to append list in python
list1 = ["hello"]
list1 = list1 + ["world"]
Example 2: python append to list
a = [1, 2, 3, 4, 5]
# Let's add 6 to the list called a
a.append(6)
list1 = ["hello"]
list1 = list1 + ["world"]
a = [1, 2, 3, 4, 5]
# Let's add 6 to the list called a
a.append(6)