From d5b21cacef21b7d008634e84e72ff189604a3395 Mon Sep 17 00:00:00 2001 From: daviddoji Date: Mon, 3 Oct 2022 16:07:25 +0200 Subject: [PATCH] Adopted new convention from template --- src/Python/Problem063.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/Python/Problem063.py b/src/Python/Problem063.py index 0c1ee3b..0be686a 100644 --- a/src/Python/Problem063.py +++ b/src/Python/Problem063.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3 +#!/usr/bin/env python """ Created on 05 Aug 2022 @@ -31,5 +31,4 @@ def compute(): if __name__ == "__main__": - - print(f"Result for Problem {int(63):003d}: {compute()}") + print(f"Result for Problem 63 is {compute()}")