From 96285a48655e0b2996d138fc93baaa51ead9e9af Mon Sep 17 00:00:00 2001 From: proAnkush <79246919+proAnkush@users.noreply.github.com> Date: Thu, 18 Feb 2021 16:09:49 +0530 Subject: [PATCH] Create Lists.ipynb Fixed some comments reading "#Creating a list called list". --- Lists/Lists.ipynb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Lists/Lists.ipynb b/Lists/Lists.ipynb index 331a5db..a07289a 100644 --- a/Lists/Lists.ipynb +++ b/Lists/Lists.ipynb @@ -916,7 +916,7 @@ } }, "source": [ - "# Creating a new list called list\n", + "# Creating a new list called name\n", "name = ['Tanu', 'Nanda']\n", "# Before appending\n", "name" @@ -1373,7 +1373,7 @@ } }, "source": [ - "# Creating a new list called list\n", + "# Creating a new list called name\n", "name = ['Tanu', 'Nanda']\n", "# Before removing\n", "name" @@ -1696,7 +1696,7 @@ } }, "source": [ - "# Creating a list called list\n", + "# Creating a list called num\n", "num = [1, 2, 3, 4, 5]\n", "# Before popping\n", "num" @@ -2068,4 +2068,4 @@ ] } ] -} \ No newline at end of file +}