# list testing fruit_list = ['apple', 'banana', 'cherry', 'strawberry'] for item in fruit_list: print() # print the whole word print("Fruit Name: ", item) # print the first letter print("First Letter: ", item[0])