suryansh-code / hangman

No blank lines allowed after function docstring FLK-D202
Documentation
Minor
6 months ago6 months old
No blank lines allowed after function docstring
 14
 15
 16def is_guessed(secret_word, guess_word, guess):
 17    """ 18    secret_word: string, the word the user is guessing; assumes all letters are
 19      lowercase
 20    letters_guessed: list (of letters), which letters have been guessed so far;
No blank lines allowed after function docstring
188    return hint_word
189
190def hangman(secret_word):
191    """192    secret_word: string, the secret word to guess.
193
194    Starts up an interactive game of Hangman.