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