Answers for "python add item to list\"

0

how to add an element in a list in python

thislist = ["apple", "banana", "cherry"]

thislist.insert(1, "orange")

print(thislist)
Posted by: Guest on May-06-2021

Python Answers by Framework

Browse Popular Code Answers by Language