From 7066e473e844c5fbfc6e8b23582e1b553c14e530 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustav=20S=C3=B6rn=C3=A4s?= Date: Sat, 12 Dec 2020 07:08:08 +0100 Subject: add "ms" to bottom line --- 20/py/aoc20.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to '20/py/aoc20.py') diff --git a/20/py/aoc20.py b/20/py/aoc20.py index c904e21..ea13447 100644 --- a/20/py/aoc20.py +++ b/20/py/aoc20.py @@ -114,11 +114,11 @@ if __name__ == "__main__": if only_part == 0: print(" -------", end="") print() - print("tot ", end="") + print("tot ", end="") if running_part(1): - print(f"{tot_time[0]*1000:6.3f}", end="") + print(f"{tot_time[0]*1000:8.3f} ms", end="") if only_part == 0: - print(" ", end="") + print(" ", end="") if running_part(2): - print(f"{tot_time[1]*1000:6.3f}", end="") + print(f"{tot_time[1]*1000:8.3f} ms", end="") print() -- cgit v1.2.1