mirror of
https://github.com/bvanroll/odiseectf.git
synced 2025-08-29 20:02:43 +00:00
10 lines
235 B
Python
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")
|