Liste Get Sublist

x = [0, 1, 2, 3, 4, 5]
print(x[1:4])
# [1, 2, 3]
Sore Sloth