-2
Very simple doubt indeed. I have the following list:
fruits = {"apple":"123", "banana":"456", "cherry":"789"}
for fruit in fruits:
print(fruit)
How do I stop in my return appear the numbers of each?
The way the return is: apple, banana and Cherry
but I need the return to be 123,456,789
Just like that! Top! Thank you
– Saulo