From 44997965965ac5499b5eada0dbbf1d6c9d6c2865 Mon Sep 17 00:00:00 2001 From: craftyarch Date: Mon, 8 Feb 2021 11:48:45 +0200 Subject: [PATCH] Update ex03.py --- ex03.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ex03.py b/ex03.py index d0da21d..a98e626 100755 --- a/ex03.py +++ b/ex03.py @@ -1,7 +1,7 @@ print("I will now count my chickens:") print("Hens", 25 + 30 / 6) -print("Rosters", 100 - 25 * 3 % 4) +print("Roosters", 100 - 25 * 3 % 4) print("Now I will count the eggs:")