中国大学MOOC: 程序的运行结果是:( )ll = [ab, cd, ef, gh]for x in ll[::-1]: if x
举一反三
- 中国大学MOOC: x=[[]]*3x[0].append(1)print(x)上述代码的输出结果是____。
- 程序如下: x='ab;cd;ef' y=x.split(';') y的值为['ab','cd','ef']
- 中国大学MOOC: 已知程序如下:lst=[[1,2],[3,4],[5,6]]for x in lst: print(x[0]*x[1],end=,)执行该程序后,输出结果为:__________ 。
- x=[[]] x[0].append(1) print(x) 上述代码的输出结果是____
- 下列Python语句的输出结果是。 x=y=[1,2] x.append(3) print(x is y,x==y,end=') z=[1,2,3] print(x is z,x==z,y==z)