执行下面Python代码后,会发生什么?( )
my_list = [1, 2, 3]
print(my_list[3])
代码正常执行,输出3
抛出TypeError异常
抛出ValueError异常
抛出IndexError异常