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