Let's say this is my list:
current_fruits = ['apple', 'orange', 'lemon']
My goal is to loop through each fruit in the list and add the name of the fruit onto a certain formatted string somehow. For example, this could be the string format for that list: "Fruits: apple, orange, lemon"
so it would have commas and spaces after each item.
I know I could do this manually by adding each index/place in the list onto the string, but I want it to be dynamic since the fruits in current_fruits change around.