1x = [1, 2]
2
3print(x[1])
4
5try:
6    print(x[1.0])
7except TypeError:
8    print("TypeError")
9