Article Outline
Python example 'python-example-34'
Functions in program:
def three_hellos():
def hello_world():
python-example-34
Python example: python-example-34
#!/usr/bin/python
# -*- coding: UTF-8 -*-
def hello_world():
print('hello world')
def three_hellos():
for i in range(3):
hello_world()
if __name__ == '__main__':
three_hellos()
Useful links
- Learn Python: https://pythonbasics.org/
- More Python: https://pythonprogramminglanguage.com