下列语句的执行结果是40。x=[4,0,7]y=str(x[0])+str(x[1])print(y)
举一反三
- x=[[]] x[0].append(1) print(x) 上述代码的输出结果是____
- 数组x定义:String x[ ][ ]=new int[3][2]; x[0 ][0 ]=”abc”, x[0 ][1]=”12345”;<br/>则 x.length 的值为______ ,x[0][1].leng()的值为______ 。
- 下列语句的执行结果是40。x = [4, 0, 7]y = str(x[0]) + str(x[1])print(y)
- 已知x=[[1]]*3,执行语句x[0][0]=5之后,x的值为______ 。
- 已知x=[[1]]*3,那么执行语句x[0][0]=5之后,变量x的值为[[5],[5],[5]]。