list [1][1] python code example
Example 1: python array index range
a[start:stop] # items start through stop-1
a[start:] # items start through the rest of the array
a[:stop] # items from the beginning through stop-1
a[:] # a copy of the whole array
Example 2: reading a list in python
strings = list(map(str,input().split()))
numbers = list(map(int, input().split()))