Update app.py
Browse files
app.py
CHANGED
@@ -59,12 +59,12 @@ six_letters = [word for word in words.words() if len(word)==6 ]
|
|
59 |
seven_letters = [word for word in words.words() if len(word)==7 ]
|
60 |
|
61 |
#score
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
|
69 |
for word in two_letters:
|
70 |
if all(c in word for c in clue2) and not any(c in word for c in exclusions):
|
|
|
59 |
seven_letters = [word for word in words.words() if len(word)==7 ]
|
60 |
|
61 |
#score
|
62 |
+
score2=0
|
63 |
+
score3=0
|
64 |
+
score4=0
|
65 |
+
score5=0
|
66 |
+
score6=0
|
67 |
+
score7=0
|
68 |
|
69 |
for word in two_letters:
|
70 |
if all(c in word for c in clue2) and not any(c in word for c in exclusions):
|