题目内容

以下程序的输出结果是:x=10y=0if ( x > 5) or ( x/y > 5):print( 'Right')else:print( 'Wrong')

A. Right
B. Wrong
C. 报错:ZeroDivisionError
D. 不报错,但不输出任何结果

查看答案
更多问题

如果Python程序执行时产生了"TypeError"的错误,其原因是()。

A. 代码中的数据类型不匹配
B. 代码中使用了错误的关键字
C. 代码中缺少'' : "符号
D. 代码里的语句嵌套层次太多

执行以下程序,输入ab,然后按Enter键,输出结果是( ) 。k=10while True:s = input('请输入q退出:')if s == 'a':k +=1continueelse:k +=2breakprint(k)

A. 13
B. 请输入q退出:
C. 12
D. 10

以下程序的输出结果是:Is = [12,44,23 ,46]for i in ls:if i == '44':print( 'found it ! i = ',i)breakelse:print( 'not found it···')}

A. not found it ···
B. found it ! i= 44
C. found it ! i = 44not found it ···
D. found it ! i= '44'not found it ···

以下语句不会引发异常的是:

A. a=b=3+1j
B. 1 +"1"
C. 3/ 0
D. print " no error"

答案查题题库