Python pop elemen dengan indeks

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

# now a is ['a', 'c', 'd']
Nervous Nightingale