1# a[start:stop:step], default step is 1
2a = (1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
3b = a[1:3] # Note that the last index is not included
4print(b)
5b = a[2:] # until the end
6print(b)
7b = a[:3] # from beginning
8print(b)
9b = a[::2] # start to end with every second item
10print(b)
11b = a[::-1] # reverse tuple
12print(b)
13