Answers for "how to delete an item in a list python"

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
5

python remove by index

a = [0, 1, 2, 3, 4, 5]
el = a.pop(2)
Posted by: Guest on March-05-2020

Code answers related to "how to delete an item in a list python"

Python Answers by Framework

Browse Popular Code Answers by Language