题目内容

下面的代码在运行时输入“12”,则输出结果是()x=input("请输入一个数:")if x=="1":print('One')elif x=='2'print('Two')elif x=='3'print('Three')else:print('Other')

A. One
B. Two
C. Three
D. Other

查看答案
更多问题

print(True if 2>=0 else False)语句的输出结果是()(注:这是一个三元运算,可以查阅一下资料)

A. True
B. False
C. 1
D. -1

下列代码的输出结果是()a=['123','456','789']s=0n=0for b in as+=a[n]n+=1print(s)

A. 0
B. 15
C. 159
D. 程序运行出错

下面代码的输出结果是()a=range(10)for i in a[::-2]print(i,end="")

A. 0 2 4 6 8
B. 8 6 4 2 0
C. 1 3 5 7 9
D. 9 7 5 3 1

下列关于python循环结构的说法中,错误的是()

A. 遍历循环中的遍历结构可以是字符串、文件、组合数据类型和range对象
B. break可用于跳出内层的for或者while循环
C. continue语句可以哦那个与跳出当前层次的循环
D. while课实现无限循环结构

答案查题题库