给出下面代码:
a=input("").split(",")
x=0
whilexprint(a[x],end="")
x+=1
代码执行时,从键盘获得a,b,c,d,则代码的输出结果是:()。
a=input("").split(",")
x=0
whilex
x+=1
代码执行时,从键盘获得a,b,c,d,则代码的输出结果是:()。
举一反三
- 给出下面代码:a= input( ).split( , )if isinstance(a,list):print( {} is list .format(a))else:print( {} is not list .format(a))代码执行时,从键盘获得1,2,3,则代码的输出结果是:() A: A 执行代码出错 B: 1,2,3 is not list C: ['1', '2', '3'] is list D: 1,2,3 is list
- 给出下面代码:a=input().split(",")for i in a: print(i,end="")代码执行时,从键盘输入“a,b,c,d”,则代码的输出结果是 A: a,b,c,d B: abcd C: 执行代码出错 D: a b c d
- x=[[]]*3x[0].append(1)print(x)上述代码的输出结果是____。
- 读代码,填空(1) 代码: print(int("123")+int("456"))执行后,输出____________。(2) 代码:x,y,z=10,3,2print(x%y, pow(x,y))执行后,输出____________。(3)代码: x=3.1415926print(round(x,2) , round(x))执行后,输出____________。(4) 代码:i=0while i<=9: print(i, end=', ') i=i+2执行后,输出____________
- 下面代码的输出结果是 x=0x1010 print(x)