Explorar el Código

pendu.py: cosmetic changes

master
Dimitri Merejkowsky hace 6 años
padre
commit
98dc0984cf
Se han modificado 1 ficheros con 5 adiciones y 1 borrados
  1. +5
    -1
      sources/04-pendu.py

+ 5
- 1
sources/04-pendu.py Ver fichero

@@ -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):