From a03e11445915f326b1d4f238e12490deee4f7825 Mon Sep 17 00:00:00 2001 From: EduardPrigoana Date: Sun, 30 Mar 2025 22:25:25 +0300 Subject: [PATCH] Add py/Loops/task5.py --- py/Loops/task5.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 py/Loops/task5.py diff --git a/py/Loops/task5.py b/py/Loops/task5.py new file mode 100644 index 0000000..5bbfcbd --- /dev/null +++ b/py/Loops/task5.py @@ -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 \ No newline at end of file