THIS IS PYTHON PROGRAMMING
CODES TO COPY:
# Problem Set 2, hangman.py
# Name: Sung Min Lim
# Collaborators:
# Time spent:
# Hangman Game
# ———————————–
# Helper code
# You don’t need to understand this helper code,
# but you will have to know how to use the functions
# (so be sure to read the docstrings!)
import random
import string
WORDLIST_FILENAME = “words.txt”
def load_words():
“””
Returns a list of valid words. Words are strings of lowercaseletters.
Depending on the size of the word list, this function may
take a while to finish.
“””
print(“Loading word list from file…”)
# inFile: file
inFile = open(WORDLIST_FILENAME, ‘r’)
# line: string
line = inFile.readline()
# wordlist: list of strings
wordlist = line.split()
print(” “, len(wordlist), “words loaded.”)
return