Files
odiseectf/olivierdeschacht/820.py
2018-11-13 12:58:56 +01:00

10 lines
235 B
Python

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")