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.
This commit is contained in:
Hannes 2018-12-05 20:50:17 +01:00 committed by Satwik Kansal
parent b0e7a816ec
commit 9c5f26e758
1 changed files with 2 additions and 2 deletions

4
README.md vendored
View File

@ -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\.