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"]