Python -Liste am Index entfernen

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

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