第15752题 单选题
Python遍历二维列表打印表格,划线处应填入的正确代码是?
ls = [['金京',89],['吴树海',80],['王津津',90]]
for row in range(len(ls)):
    for column in range(len(ls[row])):
        print(_______,end="\t")
    print()
{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
程序运行统计
暂无判题统计
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析