Answers for "add element to a list in python"

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 "add element to a list in python"

Python Answers by Framework

Browse Popular Code Answers by Language