-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHelloWorld.py
38 lines (28 loc) · 976 Bytes
/
HelloWorld.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
############################################################
# Print Hello world
string = "Hello World"
print(string)
############################################################
# Python Function
# Define function hello with parameter string
def hello(string): # Function header
"""Prints a string""" # Description
# Print string
print(string) # Body
# Call hello
hello("Hello World (generated with Python Function)")
############################################################
# Python Function with Loop
# Define function hello for printing Hello World n-times (if output = TRUE)
def hello(numloop, output = True):
"""Prints Hello World n-times"""
# If Output is true
if output is True:
# Loop
for i in range(numloop):
# Print string
print("Hello World", i+1)
else:
print("Output is not TRUE")
# Call hello
hello(8, output = True)