List Python

aList = [123, 'abc', 4.56, ['inner', 'list'], 7-9j]
aList[0]
print aList[1:4]
print aList[:3]
print aList[3][1]