forked from siengrain/wordleTest
Fix uppercasing of repeated characters
This commit is contained in:
parent
bd773150ab
commit
06d93758a4
|
@ -9,6 +9,7 @@ def getw():
|
|||
lines = f.readlines()
|
||||
|
||||
palabra = lines[number][0:5]
|
||||
palabra = "flocs"
|
||||
|
||||
f.close()
|
||||
return palabra
|
||||
|
@ -32,7 +33,7 @@ def word(palabra):
|
|||
break
|
||||
while i != 5:
|
||||
if guess[i] == palabra[i]:
|
||||
guess = guess.replace(guess[i], guess[i].upper())
|
||||
guess = guess[:i] + guess[i].upper() + guess[i+1:]
|
||||
i += 1
|
||||
print(guess)
|
||||
hp -= 1
|
||||
|
|
Loading…
Reference in New Issue