append py code example
Example 1: add something to list python
#append to list
lst = [1, 2, 3]
something = 4
lst.append(something)
#lst is now [1, 2, 3, 4]
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 python
list.append(item)
Example 4: append in python
EmptyList = []
list = [1,2,3,4]
#for appending list elements to emptylist
for i in list:
EmptyList.append('i')
Example 5: append python
EmptyList = []
EmptyList.append('This list is')
EmptyList.append('no longer empty')
print(EmptyList)