Add one more statement to explanation snippet

This commit is contained in:
Satwik Kansal 2018-01-17 18:23:28 +05:30
parent 41042a61ba
commit 491a98e478
1 changed files with 2 additions and 0 deletions

2
README.md vendored
View File

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