Answers for "python remove list elemnt by index"

1

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 "python remove list elemnt by index"

Python Answers by Framework

Browse Popular Code Answers by Language