1#Example List
2list = ['apples', 'bannas', 'grapes']
3#Use Known Entites In The List To Find The Index Of An Unknown Object
4Index_Number_For_Bannas = list.index('apples')
5#Print The Object
6print(list[Index_Number_For_Bannas])
7
1# Make the list
2list = ['bananas', 'apples', 'watermellon']
3# Print the word apples from the list
4print(list[1])