Answers for "python add an element of 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

Code answers related to "python add an element of list"

Python Answers by Framework

Browse Popular Code Answers by Language