Browse Source

pendu.py: cosmetic changes

master
Dimitri Merejkowsky 6 years ago
parent
commit
98dc0984cf
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      sources/04-pendu.py

+ 5
- 1
sources/04-pendu.py View File

@@ -3,6 +3,7 @@ import random
def read_words():
stream = open("noms.txt")
words = stream.read().splitlines()
stream.close()
return words


@@ -13,7 +14,10 @@ def choose_word(words):


def has_won(word, letters):
return set(word) == letters
for letter in word:
if letter not in letters:
return False
return True


def display_hint(word, letters):