cshw/py/Loops/task5.py

6 lines
No EOL
139 B
Python

# Define the word
word = "Banana"
# Loop through each letter in the word
for letter in word:
print(letter) # Print the current letter