mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-12-18 17:20:16 +00:00
removing tabs from print statement
This commit is contained in:
parent
84c97dae33
commit
b7d8a03e6f
|
@ -10,9 +10,9 @@ def _print_dist(dist, v):
|
|||
for i in range(v):
|
||||
for j in range(v):
|
||||
if dist[i][j] != float("inf"):
|
||||
print(int(dist[i][j]), end="\t")
|
||||
print(int(dist[i][j]), end=" ")
|
||||
else:
|
||||
print("INF", end="\t")
|
||||
print("INF", end=" ")
|
||||
print()
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user