change order

This commit is contained in:
Satwik Kansal 2019-07-13 22:41:27 +05:30
parent d3157d61a3
commit 772a96c36f
1 changed files with 2 additions and 2 deletions

4
README.md vendored
View File

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