change order

This commit is contained in:
Satwik Kansal 2019-07-13 22:41:27 +05:30 committed by Satwik
parent 2a1c28ee4d
commit 6223715725
1 changed files with 2 additions and 2 deletions

4
README.md vendored
View File

@ -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