From 1b9791f221a216cfef2737cc522246ce35ba5671 Mon Sep 17 00:00:00 2001 From: Giza Date: Tue, 2 Apr 2024 10:42:26 +0800 Subject: [PATCH] hello --- mygraph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mygraph.py b/mygraph.py index 56289bf..ebc1b9f 100644 --- a/mygraph.py +++ b/mygraph.py @@ -52,7 +52,7 @@ def floyd_warshall(graph): # Find shortest distances between all pairs distance_matrix = floyd_warshall(graph) -print("After the Operation") +print("\nAfter the Operation") # Print the distance matrix for row in distance_matrix: print(row)