From 4c7aa6d402ab4dbf985cbf9e2271ee9d7a2df6f5 Mon Sep 17 00:00:00 2001 From: Walt Mankowski Date: Wed, 26 Aug 2020 20:58:43 -0400 Subject: fixed typo and got output to match the perl version --- challenge-075/walt-mankowski/python/ch-2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'challenge-075/walt-mankowski/python/ch-2.py') diff --git a/challenge-075/walt-mankowski/python/ch-2.py b/challenge-075/walt-mankowski/python/ch-2.py index fb8d13b9c3..af82ba5642 100644 --- a/challenge-075/walt-mankowski/python/ch-2.py +++ b/challenge-075/walt-mankowski/python/ch-2.py @@ -45,5 +45,5 @@ for height in range(1, rows+1): best_height = height best_width = width -print(f'The best rectangle is {best_height} x {best_width} for an aea of {best_area}.') +print(f'The best rectangle is {best_height} x {best_width} for an area of {best_area}') -- cgit