Add seperator in output between days
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-12-08 09:34:34 +01:00
parent c22e5b16c4
commit 5031b4cae7

View File

@@ -10,6 +10,7 @@ for dir in [x for x in sorted(listdir('.')) if isdir(x)]:
file = dir + '/' + dir + '.py' file = dir + '/' + dir + '.py'
input = dir + '/input.txt' input = dir + '/input.txt'
if isfile(file) and isfile(input): if isfile(file) and isfile(input):
print('--------------------------------')
print(dir, ':', sep='') print(dir, ':', sep='')
start_time = time() start_time = time()
with Popen(["python3", file], stdout=PIPE, bufsize=1, universal_newlines=True) as p: with Popen(["python3", file], stdout=PIPE, bufsize=1, universal_newlines=True) as p: