mirror of
https://github.com/satwikkansal/wtfpython
synced 2025-07-04 20:38:06 +02:00
change order
This commit is contained in:
parent
d3157d61a3
commit
772a96c36f
1 changed files with 2 additions and 2 deletions
4
README.md
vendored
4
README.md
vendored
|
@ -262,9 +262,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…
Add table
Add a link
Reference in a new issue