Example: My code:
lst=[15,18,20,1,19,65]
print(lst[2])
It prints 20, but I want my array to be 1-indexed and print 18 instead.
98,67,86,3,4,21
When I print the second number it should print 67 and not 86 based on indexing. First number is 98 Second number is 67 Third number is 86 and so on. How to make my program have index 0 become index 1 and so on?