From d188aeddcd761add75ef007ae0a4d4d18b10c40c Mon Sep 17 00:00:00 2001 From: Hannes Date: Wed, 5 Dec 2018 11:25:36 +0100 Subject: [PATCH] match order of display to if/else order I was WTFing for way too long until I realised that the results were displayed in opposite order of the if/else statement. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 855e2ac..5c71b4f 100644 --- a/README.md +++ b/README.md @@ -774,10 +774,10 @@ for item in mixed_list: **Output:** ```py ->>> booleans_found_so_far -0 >>> integers_found_so_far 4 +>>> booleans_found_so_far +0 ``` 2\.