Compare commits
No commits in common. "5a37144d0b89c2bf7ae468b3f12a842c551edc0e" and "ea560a485268f84f631b3f4e1a2aa8f65037788c" have entirely different histories.
5a37144d0b
...
ea560a4852
|
@ -14,20 +14,16 @@ def getw():
|
|||
return palabra
|
||||
|
||||
def word(palabra):
|
||||
used_char = []
|
||||
hp = 5
|
||||
while hp != 0:
|
||||
print('Enter a 5-letter word: ')
|
||||
guess = input()
|
||||
print('\n')
|
||||
guess = guess.lower()
|
||||
if len(guess) != 5:
|
||||
print('That word has ' + str(len(guess)) + ' letters instead of 5!\n')
|
||||
continue
|
||||
else:
|
||||
for x in guess:
|
||||
if x not in used_char:
|
||||
used_char.append(x)
|
||||
if x not in palabra:
|
||||
guess = guess.replace(x, '_')
|
||||
i = 0
|
||||
|
@ -40,11 +36,6 @@ def word(palabra):
|
|||
i += 1
|
||||
print(guess)
|
||||
hp -= 1
|
||||
msg = '\nUsed characters: ' + str(used_char) + '\n'
|
||||
msg = msg.replace('[', '')
|
||||
msg = msg.replace(']', '')
|
||||
msg = msg.replace("'", '')
|
||||
print(msg)
|
||||
if hp == 0:
|
||||
print('u lost! the word was ' + palabra + ' :(')
|
||||
hint = '_ _ _ _ _'
|
||||
|
|
Loading…
Reference in New Issue