This commit is contained in:
2018-11-13 12:58:56 +01:00
parent 5e0faa3f52
commit c5e51424a1
52 changed files with 387457 additions and 7 deletions

9
olivierdeschacht/820.py Normal file
View File

@@ -0,0 +1,9 @@
temp = []
with open("olivier.txt", "r") as infile:
temp = infile.readlines()
with open("olivier820.txt", "w") as outfile:
for t in temp:
if len(t) < 8 and len(t) > 20:
continue
outfile.write(t+"\n")