minor fixes
wip dialogue fixed
This commit is contained in:
@@ -17,17 +17,20 @@ def generateFile(rows, lenghtOfRows):
|
|||||||
content.append(generateRow(lenghtOfRows))
|
content.append(generateRow(lenghtOfRows))
|
||||||
return content
|
return content
|
||||||
|
|
||||||
|
|
||||||
def generateRow(lenghtOfRows):
|
def generateRow(lenghtOfRows):
|
||||||
row = ""
|
row = ""
|
||||||
for z in range(0, lenghtOfRows):
|
for z in range(0, lenghtOfRows):
|
||||||
row = row + str(randint(0, 9))
|
row = row + str(randint(0, 9))
|
||||||
return row
|
return row
|
||||||
|
|
||||||
|
|
||||||
def writeFile(content, x, o):
|
def writeFile(content, x, o):
|
||||||
file = open("testdata/file" + str(x + o) + ".txt", "w")
|
file = open("testdata/file" + str(x + o) + ".txt", "w")
|
||||||
for w in range(0, len(content)):
|
for w in range(0, len(content)):
|
||||||
file.write(content[w] + "\n")
|
file.write(content[w] + "\n")
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
print("Hello World")
|
print("Hello World")
|
||||||
i = int(input("How many units would you like to generate? "))
|
i = int(input("How many units would you like to generate? "))
|
||||||
@@ -51,13 +54,17 @@ if __name__ == '__main__':
|
|||||||
globals()["p" + str(counter)].start()
|
globals()["p" + str(counter)].start()
|
||||||
print('thread number ' + str(counter) + ' just started')
|
print('thread number ' + str(counter) + ' just started')
|
||||||
counter = counter + 1
|
counter = counter + 1
|
||||||
|
if counter == c: print(' ')
|
||||||
|
if counter == c: print('working, this might take a while')
|
||||||
|
|
||||||
counter = int(0)
|
counter = int(0)
|
||||||
|
|
||||||
while counter < c:
|
while counter < c:
|
||||||
globals()["p" + str(counter)].join()
|
globals()["p" + str(counter)].join()
|
||||||
print('thread number ' + str(counter) + ' just finished')
|
print('thread number ' + str(counter) + ' just finished')
|
||||||
counter = counter + 1
|
counter = counter + 1
|
||||||
print('working, this might take a while')
|
|
||||||
|
print(" ")
|
||||||
print("Data is generated. Have fun!")
|
print("Data is generated. Have fun!")
|
||||||
sec = time.time() - start_time
|
sec = time.time() - start_time
|
||||||
minutes = sec / 60
|
minutes = sec / 60
|
||||||
|
|||||||
Reference in New Issue
Block a user