mirror of
https://github.com/satwikkansal/wtfpython.git
synced 2025-07-26 07:51:24 +02:00
Fix typo, expression output True and not [[...]]
This commit is contained in:
2
README.md
vendored
2
README.md
vendored
@@ -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`)
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user