Skip to content

Commit 772a96c

Browse files
committed
change order
1 parent d3157d6 commit 772a96c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,9 +262,9 @@ some_dict[5] = "Python"
262262
```py
263263
>>> some_dict[5.5]
264264
"Ruby"
265-
>>> some_dict[5.0]
265+
>>> some_dict[5.0] # "Python" destroyed the existence of "JavaScript"?
266266
"Python"
267-
>>> some_dict[5] # "Python" destroyed the existence of "JavaScript"?
267+
>>> some_dict[5]
268268
"Python"
269269
270270
>>> complex_five = 5 + 0j

0 commit comments

Comments
 (0)