how to append values to a list in python 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: how to append a number to a list in python
l = [1, 2, 4, 5]
new_item = 6
l.append(6)
print(l)
Example 3: 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 4: what is append use
it=[]
for i in range(11):
it.append(i)
print(i)