Add py/Loops/task5.py

This commit is contained in:
Eduard Prigoana 2025-03-30 22:25:25 +03:00
parent ea7fa38429
commit a03e114459

6
py/Loops/task5.py Normal file
View file

@ -0,0 +1,6 @@
# Define the word
word = "Banana"
# Loop through each letter in the word
for letter in word:
print(letter) # Print the current letter