以下程序的输出结果是()。words = "hello Python world!"f = lambda: len(x)for i in words. split( ):print(f(i),end=" ")
A. 5 5 5
B. 5 6 6
C. 6 6 6
D. 11 11 11
查看答案
以下程序的输出结果是: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 ···