Compare commits

...

2 Commits

Author SHA1 Message Date
Dendy 06d93758a4
Fix uppercasing of repeated characters 2022-01-31 11:32:58 +01:00
Dendy bd773150ab
Add script shebang 2022-01-31 11:27:38 +01:00
1 changed files with 4 additions and 1 deletions

5
wordle.py Normal file → Executable file
View File

@ -1,3 +1,5 @@
#!/bin/env python
import random
def getw():
@ -7,6 +9,7 @@ def getw():
lines = f.readlines()
palabra = lines[number][0:5]
palabra = "flocs"
f.close()
return palabra
@ -30,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