From 16a0c33ee4dc560936494c791c60eac846979a2f Mon Sep 17 00:00:00 2001 From: RIZWAN AHMAD Date: Fri, 25 Oct 2019 16:56:37 +0530 Subject: [PATCH 1/2] Update lists.py add negative indexing --- 11 - Collections/lists.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/11 - Collections/lists.py b/11 - Collections/lists.py index 7d2f669c..cfb17663 100644 --- a/11 - Collections/lists.py +++ b/11 - Collections/lists.py @@ -4,3 +4,7 @@ scores.append(99) print(names) print(scores) + +#print element from right use - (negative) e.g. print last first element as -1 : names[-1]=Susan + +print(names[-1]) From 0ac7f340d0fa3a7a3e3e4195b830855ffab5b1b5 Mon Sep 17 00:00:00 2001 From: RIZWAN AHMAD Date: Fri, 25 Oct 2019 16:57:10 +0530 Subject: [PATCH 2/2] Update lists.py add negative indexing --- 11 - Collections/lists.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/11 - Collections/lists.py b/11 - Collections/lists.py index cfb17663..228e9198 100644 --- a/11 - Collections/lists.py +++ b/11 - Collections/lists.py @@ -4,7 +4,5 @@ scores.append(99) print(names) print(scores) - #print element from right use - (negative) e.g. print last first element as -1 : names[-1]=Susan - print(names[-1])