This is our first start of the Hangman. Let us write a simple 'Hello World' style introduction to the game itself.
#!/usr/bin/env python # Filename: hangman1.py print '''--- Welcome to the Hangman Game ---'''
$ python hangman1.py --- Welcome to the Hangman Game ---
What we see in the 'Output' section is the result after hitting Ctrl-E in DrPython or by running python on the command line as shown above.