Python di setiap orang termasuk yang pertama

a = [1, 2, 3, 4, 5]
a[1::2]
# returns 2, 4
a[::2]
#returns 1, 3, 5
EDestroyer