Around two weeks ago, I started learning Python, and the last few days I've been working with while and for loops. I've learned how to print each string in a list on its own line, but how can I print each LETTER of each string on its own line, before moving to the next string?? Here's the short code for printing the string value of each index in my list:
fruits = ["apple", "banana", "tangerine"]
for strings in fruits:
print(fruits[0])
Output: apple
apple
apple
Desired output: a
p
p
l
e
b
a
n
a
n
a..... etc.
Thanks in advance for whoever can help me out here. I'm still learning the logic and syntax of python, and I figured completely understanding loops was very necessary.