Negative Indexing: We can specify a range of negative indexes by specifying the start, end and step, the return value will be a new list. #### fruits = ['banana', 'orange', 'mango', 'lemon']
orange_andmango = fruits[-3:-1] # it does not include the last index,['orange', 'mango'] ### reverse_fruits = fruits[::-1] take the list in reverse order ###