Skip to content

Commit 3c20730

Browse files
feat: add hello world 10 times example (#671)
Contributed by @guerrevg - Adds loop example printing Hello World 10 times - Located in Basics/03_control_flow/ - Includes docstring documentation - Tested and verified working Resolves issue #671
2 parents 2c70899 + ad39366 commit 3c20730

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
""" print 'Hello World' 10 times """
2+
3+
for i in range(10):
4+
print("Hello World")
5+

0 commit comments

Comments
 (0)