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