Answers for "how to remove from the list in python"

4

pytho. how to remove from a list

names = ['Boris', 'Steve', 'Phil', 'Archie']
names.pop(0) #removes Boris
names.remove('Steve') #removes Steve
Posted by: Guest on October-19-2020

Code answers related to "how to remove from the list in python"

Python Answers by Framework

Browse Popular Code Answers by Language