Post

@PythonPr 4. a[-0] is the same as a[0], so 1. a[-1] is 3. So, 1 + 3 is 4.
English

@PythonPr 1. a[-0] is the same as a[0]
2. a[-1] points to the last item in the list. a[-2] is the second last item and a[-3] is the first item (a reverse sequence)
3. print(a + b) = 1 + 3 = 4
English








