From eb61811d5cbf8b2d1abb752f700ee1880e8cd8f3 Mon Sep 17 00:00:00 2001 From: kjg Date: Mon, 25 May 2020 23:58:31 +0900 Subject: [PATCH] [Python #4] update e26.py typo --- kjg/python-the-hard-way/e26.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kjg/python-the-hard-way/e26.py b/kjg/python-the-hard-way/e26.py index ada335a..47b151e 100644 --- a/kjg/python-the-hard-way/e26.py +++ b/kjg/python-the-hard-way/e26.py @@ -71,7 +71,7 @@ print("We'd have {} beans, {} jars, and {} crates.".format(*formula)) people = 20 cats = 30 -people = 20 +dogs = 20 if people < cats: print ("Too many cats! The world is doomed!")