mirror of
https://github.com/satwikkansal/wtfpython
synced 2024-11-22 11:04:25 +01:00
change order
This commit is contained in:
parent
2a1c28ee4d
commit
6223715725
4
README.md
vendored
4
README.md
vendored
@ -326,9 +326,9 @@ some_dict[5] = "Python"
|
||||
```py
|
||||
>>> some_dict[5.5]
|
||||
"Ruby"
|
||||
>>> some_dict[5.0]
|
||||
>>> some_dict[5.0] # "Python" destroyed the existence of "JavaScript"?
|
||||
"Python"
|
||||
>>> some_dict[5] # "Python" destroyed the existence of "JavaScript"?
|
||||
>>> some_dict[5]
|
||||
"Python"
|
||||
|
||||
>>> complex_five = 5 + 0j
|
||||
|
Loading…
Reference in New Issue
Block a user