Answers for "how to remove a specific value from a 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
0

python list remove all elements

l = [1,2,3,4]
l.clear()
Posted by: Guest on April-12-2020

Code answers related to "how to remove a specific value from a list in python"

Python Answers by Framework

Browse Popular Code Answers by Language