Lista de Python Eliminar en el índice

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

# now a is ['a', 'c', 'd']
Smoggy Sloth