以下程序的输出结果为:for i in range(1,5):print( "*" * (2*i-1) )
A. **** ***** *******
B. ********* *******
C. ******* ***** *** *
D. * *** ***** *******
查看答案
当x输入100时,下面程序运行结果是()x=eval(input('input x:'))if x<0 or x>20:print (x//10)elif 0<=x<5:print(x)elif 5<=x<10:print(3*x-5)elif 10<=x<20:print(0.5*x-2)
A. 10
B. 100
C. 295
D. 48
break、continue和else只适用于for循环结构,不适用于while循环结构。
A. 对
B. 错
对于for循环结构,关键词“in”是必须有的。
A. 对
B. 错
设s="abcde",random.sample(s,3)将从s串中随机抽取3个字符构成序列(列表)。
A. 对
B. 错