This is Exercise 3 of the Micro Python Tutorial.
We can define functions in Python. Functions are defined globally, within the file/module as they begin in column 0.
main.pytry: display_message('hello world.') except Exception as e: print('an error occurred: {}'.format(e)) finally: print('complete.')