-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQuestioner.py
79 lines (66 loc) · 2.49 KB
/
Questioner.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
import pickle
import numpy as np
import random
ALPHA = ["A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"]
alpha = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z"]
with open("dictionary.pkl", "rb") as f: # "dictionary.pkl" is available from
dictionary = pickle.load(f) # http://ushitora.net/archives/456
f.close() # The list of 153,484 words in about 100 books.
dictionary = [w for w in dictionary if len(w)==len(set(w))]
d = []
for w in dictionary:
ok = True
for s in w:
if s.upper() not in ALPHA:
ok = False
if ok:
d += [w]
dictionary = d
class TonguessQuestioner:
def __init__(self, dictionary, word_len):
self.word_len = word_len
self.dictionary = [w for w in dictionary if '-' not in w and len(w)==word_len]
self.ans_word = random.choice(self.dictionary).upper()
#print(self.ans_word)
self.count = 1
def question(self, word):
word = word.upper()
if len(word) != self.word_len:
print('Wrong length ! ')
return False, None
if len(word)!=len(set(word)):
print('Same letter exists ! ')
return False, None
Eat = 0
Bite = 0
for i in range(len(word)):
if word[i] == self.ans_word[i]:
Eat += 1
elif word[i] in self.ans_word:
Bite += 1
feedback = [word, Eat, Bite, self.count]
if Eat == self.word_len:
print('Correct!!! ---> Tried Time : ', self.count)
print('The answer is :' , self.ans_word)
return True, feedback
else:
print('Eat : {} , Bite : {}'.format(Eat,Bite))
self.count += 1
return False, feedback
print('Input the Length of word')
word_len = input('>>>')
print("OK, Let's Start this Game :) " )
print('Word length : ' , word_len)
print('------------------------------------------------ ')
H = TonguessQuestioner(dictionary, int(word_len) )
while True:
while True:
print('Input the word')
w = input('>>>')
if len(w)==len(set(w)) and len(w)==H.word_len:
break
else:
print('Maybe wrong, try again')
_,feedback = H.question(w)
if _ :
break