中国大学MOOC: 已知程序如下:lst=[[1,2],[3,4],[5,6]]for x in lst: print(x[0]*x[1],end=,)执行该程序后,输出结果为:__________ 。
举一反三
- 已知程序如下:lst=[[1,2],[3,4],[5,6]]for x in lst: print(x[0]*x[1],end='') # 此处''为空字符串执行该程序后,输出结果为:__________ 。
- 已知列表lst=[[1,2],[3,4],[5,6]],则表达式len([x[1]forxinlst])的值为:
- 数组x定义:String x[ ][ ]=new int[3][2]; x[0 ][0 ]=”abc”, x[0 ][1]=”12345”;<br/>则 x.length 的值为______ ,x[0][1].leng()的值为______ 。
- 已知x = [[1], [2]],那么执行语句x[0].append(3)后x的值为______
- x=[[]] x[0].append(1) print(x) 上述代码的输出结果是____