Answers for "how to delte an element from a list in pythjon"

1

python remove element from list

myList = ["hello", 8, "messy list", 3.14]  #Creates a list
myList.remove(3.14)                        #Removes first instance of 3.14 from myList
print(myList)                              #Prints myList
myList.remove(myList[1])                   #Removes first instance of the 2. item in myList
print(myList)                              #Prints myList


#Output will be the following (minus the hastags):
#["hello", 8, "messy list"]
#["hello", "messy list"]
Posted by: Guest on May-07-2021

Code answers related to "how to delte an element from a list in pythjon"

Python Answers by Framework

Browse Popular Code Answers by Language