Answers for "how to delete index from list python"

6

python list remove at index

>>> del a[2:4]
>>> a
[0, 1, 4, 5, 6, 7, 8, 9]
Posted by: Guest on December-10-2019
1

how to remove an item from a certain index in python

arr = [0, 1, 2, 3, 4]
del arr[1]
# arr is now equal to [0, 2, 3, 4]
Posted by: Guest on January-07-2021

Code answers related to "how to delete index from list python"

Python Answers by Framework

Browse Popular Code Answers by Language