mirror of
https://github.com/satwikkansal/wtfpython
synced 2025-07-04 20:38:06 +02:00
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:
parent
b0e7a816ec
commit
9c5f26e758
1 changed files with 2 additions and 2 deletions
4
README.md
vendored
4
README.md
vendored
|
@ -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\.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue