From 6f66e1e065025addc9f9abf64a507f86bb8e395c Mon Sep 17 00:00:00 2001 From: Valentin Samir Date: Tue, 3 Oct 2017 16:50:39 +0200 Subject: [PATCH] Fix typo, expression output True and not [[...]] --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4234652..5318181 100755 --- a/README.md +++ b/README.md @@ -1648,7 +1648,7 @@ a, b = a[b] = {}, 5 >>> 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`)