From 9c5f26e7588e561a716a93165a5696356c179715 Mon Sep 17 00:00:00 2001 From: Hannes Date: Wed, 5 Dec 2018 20:50:17 +0100 Subject: [PATCH] match order of display to if/else order (#105) 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 9049fdb..79820a0 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\.