how does append work in python code example
Example 1: 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 2: python append to list
stuff = ["apple", "banana"]
stuff.append("carrot")
# Print to see if it worked
print(stuff)
# You can do it with a variable too
whatever = "pineapple"
stuff.append(whatever)
# Print it again
print(stuff)
Example 3: using append in python
lst=[1,2,3,4]
print(lst)
#prints [1,2,3,4]
lst.append(5)
print(lst)
#prints [1,2,3,4,5]
Example 4: append python
it=[]
for i in range(10):
it.append(i)
Example 5: what is append use
it=[]
for i in range(11):
it.append(i)
print(i)
Example 6: append python
EmptyList = []
EmptyList.append('This list is')
EmptyList.append('no longer empty')
print(EmptyList)