Answers for "add element to list of lists"

15

how to add element to list python

lst = ["f", "o", "o", "b", "a","r"]
lst.append("b")
print(lst) # ["f", "o", "o", "b", "a", "r", "b"]
Posted by: Guest on November-12-2021
0

how to add element to python list

MyList = ["apple", "banana", "orange"]

MyList.append("raspberry")
# MyList is now [apple, banana, orange, raspberry]
Posted by: Guest on March-25-2021

Code answers related to "add element to list of lists"

Python Answers by Framework

Browse Popular Code Answers by Language