First python project. Hangman in Jupyter Notebook
Notes:
- Used list because strings are immutable according to https://stackoverflow.com/questions/1228299/change-one-character-in-a-string
- Used enumerate function to count numbers of correct letters in answer word. Code from https://stackoverflow.com/questions/6294179/how-to-find-all-occurrences-of-an-element-in-a-list
Things to do:
- Find a way to randomly select a word (preferably based on difficulty level)
- Make a list of letters used and display it for user
- Find efficiency in the code
- Make a GUI with mouse pointer functionality