第13793题 单选题
下列哪项能正确打印输出'四年级6班'字样?

某小学1-6年级都各有8个班,将年级和班级信息存入如下列表:

lst=[['一年级', '二年级', '三年级', '四年级', '五年级', '六年级'], ['1班', '2班', '3班', '4班', '5班', '6班', '7班', '8班']]
A

lst[0][4]+lst[1][5]

B

lst[0][4]+lst[1][6]

C

print(lst[0][4]+lst[1][6])

D

print(lst[0][3]+lst[1][5])

程序运行统计
暂无判题统计