Python List Indexing Sucks

By Xah Lee. Date: .

of all programing languages, python's list indexing is the most annoying.

here's some examples

print(list(range(1, 4)))
# [1, 2, 3]

# very annoying, it doesn't include the 4
x = [0, 1, 2, 3, 4, 5]
print(x[1:4])
# [1, 2, 3]

# very annoying, it doesn't include the 4