Python Online compiler - OverIQ.com (original) (raw)

list1 = [11, 33, 55, 22, 44, 89]

print(list1[0:4])

print(list1[1:5])

print(list1[4:5])