HOME/Articles/

simple python-example-34 (snippet)

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()