第12440题 单选
已知Python列表a=[11,222, 333, 4444],以下能输出333的代码是哪项?
A
print(a[-1])
B
print(a[3])
C
print(a[333])
D
print(a[2])