#!/usr/bin/python # -*- coding: UTF-8 -*- def hello_world(): print('Hello world') def three_hello_world(): for i in range(3): hello_world() if __name__ == '__main__': three_hello_world()