From e40057ddd76fea96ac07ce3dac89f8e503962ec6 Mon Sep 17 00:00:00 2001 From: Louis Navarre <louisnavarre@hotmail.com> Date: Fri, 17 Feb 2023 11:11:10 +0100 Subject: [PATCH] Format and space in Python --- sp.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sp.py b/sp.py index ab4c747..56d2046 100644 --- a/sp.py +++ b/sp.py @@ -142,8 +142,8 @@ if __name__ == "__main__": print("\tdestination : " + str(n)) print("\tcout : " + str(d)) p = get_path(n, path, source) - print("\tnombre de noeuds : "+str(len(p))) - print("\tchemin : "+" ".join(str(x) for x in p)) + print("\tnombre de noeuds : " + str(len(p))) + print("\tchemin : " + " ".join(str(x) for x in p)) else: output_fd.write(source.to_bytes(4, "big")) d, n = get_max(dist, source) -- GitLab