PlayHangman.py that is provided for the Hangman game of words.
PlayHangmanMovies.py for the movie version of Hangman with
guessing movie titles.
['_','_','_',' ','3','_',':',' ','_','_','_',' ','_','_','_','_','_',
' ','_','_','_','_','_','_','_']
You'll need to modify the guessStart method to start this way. Suggest you generate all the characters in the list as '_', and then fill in the blanks and any nonalphabetic characters. You can use ch.isalpha() to determine if a character is an alphabetic character.