diff --git a/11 - Collections/lists.py b/11 - Collections/lists.py index 7d2f669c..228e9198 100644 --- a/11 - Collections/lists.py +++ b/11 - Collections/lists.py @@ -4,3 +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])