-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGenerateList.py
33 lines (29 loc) · 917 Bytes
/
GenerateList.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
import os
import random
class GenerateList():
def __init__(self):
self.wordList = []
self._dirRoot = os.path.dirname(os.path.abspath(__file__))
def getMyWord(self):
file_object = open('words.txt')
try:
text_line = file_object.readlines()
for line in text_line:
line=line.strip('\n')
self.wordList.extend(line.split(" "))
finally:
file_object.close()
def generate(self):
random.shuffle(self.wordList)
file = open('newWordList.txt','w+')
index = 0
for word in self.wordList:
index += 1
file.write(str(word)+"\n");
if index == 50 :
break
file.close()
if __name__ == "__main__":
generateList = GenerateList();
generateList.getMyWord();
generateList.generate();