From ea15d022b3da5a49607df2d28be1dd47e2c8aec2 Mon Sep 17 00:00:00 2001 From: Suraj Deshmukh Date: Wed, 21 Oct 2015 10:28:24 +0530 Subject: [PATCH] added a blank line --- docs/datastructure.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/datastructure.rst b/docs/datastructure.rst index 3e6757f..63ac815 100644 --- a/docs/datastructure.rst +++ b/docs/datastructure.rst @@ -80,6 +80,7 @@ We can store anything in the list, so first we are going to add another list *b Above you can see how we used the *a.extend()* method to extend the list. To sort any list we have *sort()* method. The *sort()* method will only work if elements in the list are comparable. We will remove the list b from the list and then sort. :: + >>> a.remove(b) >>> a [45, 43624356, -3434, 1, 45, 23, 1, 111, 45, 56, 90]