This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import random | |
import hangman_words | |
import hangman_art | |
print(hangman_art.logo) #logo | |
# Random choise of words lists | |
chosen_word=random.choice(hangman_words.word_list) | |
# Random choise of words lists |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import random | |
import hangman_words | |
import hangman_art | |
print(hangman_art.logo) #logo | |
# Random choise of words lists | |
chosen_word=random.choice(hangman_words.word_list) | |
# Random choise of words lists |