I have a list of products
products = ["meat","salad","tomatoes"]
And I want to display them in a tkinter messagebox object, as the message. So want something like this:
This products are already in the list:
-meat
-salad
-tomatoes
But how can I put in the string to output as the message all the elements in the products list? Is that even possible?
I was woundering if you can use loops in this...