Answers for "how to append values to a list in python"

2

how to append a number to a list in python

l = [1, 2, 4, 5] 
new_item = 6
l.append(6)
print(l)
Posted by: Guest on March-17-2021
1

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)
Posted by: Guest on July-30-2020
-1

what is append use

it=[]
for i in range(11):
  it.append(i)
  print(i)
Posted by: Guest on July-14-2020

Code answers related to "how to append values to a list in python"

Python Answers by Framework

Browse Popular Code Answers by Language