From 491a98e4782b8dfa7b752ae8dd01cbf9f8836808 Mon Sep 17 00:00:00 2001 From: Satwik Kansal Date: Wed, 17 Jan 2018 18:23:28 +0530 Subject: [PATCH] Add one more statement to explanation snippet --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index d3132ca..c275447 100755 --- a/README.md +++ b/README.md @@ -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`)