1
0
mirror of https://github.com/satwikkansal/wtfpython synced 2024-11-22 11:04:25 +01:00

Fix typo in output

Fix typo, expression output True and not [[...]]
This commit is contained in:
Satwik Kansal 2017-10-11 15:57:01 +05:30 committed by GitHub
commit 27d54269bf

2
README.md vendored
View File

@ -1648,7 +1648,7 @@ a, b = a[b] = {}, 5
>>> some_list[0] >>> some_list[0]
[[...]] [[...]]
>>> some_list is some_list[0] >>> some_list is some_list[0]
[[...]] True
``` ```
Similar is the case in our example (`a[b][0]` is the same object as `a`) Similar is the case in our example (`a[b][0]` is the same object as `a`)