Skip to content

Commit 8c23c31

Browse files
Add files via upload
Use a for loop to print each letter from the string "hello world".
1 parent 9f0b089 commit 8c23c31

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Diff for: For Loops .py

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
word="Hello world"
2+
for letter in word:
3+
print(letter)

0 commit comments

Comments
 (0)