Answers for "remove list"

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
3

del list python

>>> a=[1,2,3]
>>> a.remove(2)
>>> a
[1, 3]
>>> a=[1,2,3]
>>> del a[1]
>>> a
[1, 3]
>>> a= [1,2,3]
>>> a.pop(1)
2
>>> a
[1, 3]
>>>
Posted by: Guest on May-19-2020
0

remove list from list python

>>> a = range(1, 10)
>>> [x for x in a if x not in [2, 3, 7]]
[1, 4, 5, 6, 8, 9]
Posted by: Guest on August-09-2021
0

pythone remove list

fruits = ['apple', 'banana', 'cherry']


    fruits.remove("banana")
Posted by: Guest on May-14-2021
0

delete item from list

listname.remove(element)
Posted by: Guest on October-09-2020
0

del(list) python

del[a:b] #This will delete everything from range A to B
Posted by: Guest on April-21-2021

Python Answers by Framework

Browse Popular Code Answers by Language