Run
my_list = [52, 85, 'apple', 'banana'] # Access 3rd item whose index=2 item = my_list[2] print(item)
Output