This commit is contained in:
root
2019-11-16 03:59:16 +00:00
parent 7bb5901b0b
commit eb8cc5e9bb
4 changed files with 6 additions and 4 deletions
+1 -1
View File
@@ -33,7 +33,7 @@ def get_stories(filename):
output_file_path = "text_adventures.txt"
with open(output_file_path, 'w') as output_file:
filenames = ["story0.json"]
filenames = ["story" + str(i) + ".json" for i in range(1,20)]
stories = []
for filename in filenames:
stories += get_stories(filename)