-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathstring_gen.py
43 lines (37 loc) · 1022 Bytes
/
string_gen.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
import random
import string
'''
print(random.choice('mahendrai') for _ in range(3))
test_str = 'methinks it is like a weasel'
str1 = ''
count = 0
while (str1 != test_str) :
print (str1)
'''
def generate_string():
return ''.join(random.choice(string.ascii_lowercase + ' ') for _ in range(27))
def score(realStr, genStr):
points = 0
for i in range(27):
if realStr[i]== genStr[i]:
points += 1
return points/len(realStr)
def main():
realStr = 'methinks it is like a weasel'
best_str = ""
best_score = 0
testStr = generate_string()
points = score(realStr, testStr)
loopcount = 0
while best_score != 1:
if points > best_score:
print(best_score, best_str,sep=' --->> ')
best_score = points
best_str = testStr
testStr = generate_string()
points = score(realStr, testStr)
if loopcount == 1000000:
loopcount =0
print("1 million loops")
loopcount += 1
main()