From d68d6aa6d69984f139c3e7008c967bd9c7fc6e5b Mon Sep 17 00:00:00 2001 From: Martin Delcourt <martin.delcourt@uclouvain.be> Date: Fri, 4 Oct 2019 18:49:48 +0200 Subject: [PATCH] Bug fix --- Chapter_2/ex5_sol1.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Chapter_2/ex5_sol1.py b/Chapter_2/ex5_sol1.py index 30c1586..f942a87 100644 --- a/Chapter_2/ex5_sol1.py +++ b/Chapter_2/ex5_sol1.py @@ -34,5 +34,5 @@ while lineId < n_lines: txt_to_print += " " # Case non remplie colId+=1 lineId+=1 - print txt_to_print+"|" + print (txt_to_print+"|") print(" "+n_col*"-") -- GitLab