Answers for "how to add item to a list python"

90

add something to list python

#append to list
lst = [1, 2, 3]
something = 4
lst.append(something)
#lst is now [1, 2, 3, 4]
Posted by: Guest on January-21-2020
8

how to add item to a list python

my_list = []
item1 = "test1"
my_list.append(item1)

print(my_list) 
# prints the list ["test1"]
Posted by: Guest on June-03-2020
2

python how to add to a list

food = "banana"
basket = []

basket.append(food)
Posted by: Guest on October-01-2020

Code answers related to "how to add item to a list python"

Python Answers by Framework

Browse Popular Code Answers by Language