Daftar Python Hapus di Indeks

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

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