Answers for "how to remove an index of a list in python"

2

python list remove at index

a = ['a', 'b', 'c', 'd']
a.pop(1)

# now a is ['a', 'c', 'd']
Posted by: Guest on August-11-2020

Code answers related to "how to remove an index of a list in python"

Python Answers by Framework

Browse Popular Code Answers by Language