PROBLEM SET
题库
按难度与知识点筛选,找到适合的练习题。
题目列表
共 67434 题
A21761
s=[['张三','86','90','92'],['李四','93','97','95'],['王五','89','98','99']],获取王五同学的第2门成绩数据,用s[2][2],对吗?( )
电子学会-Python-L3
中等
--
A21762
CSV文件必须使用逗号分隔数据元素,否则无法正确解析。( )
电子学会-Python-L3
中等
--
A21763
在Python中,'str'表示什么类型?( )
电子学会-Python-L3
中等
--
A21764
默认小猫角色,Scratch运行以下程序,哪个选项里的结果不可能出现?( )
各校卷题-Scratch-L1
容易
--
A21765
在Python中,运行print(list(range(2,10,3)))的结果是?( )
电子学会-Python-L3
中等
--
A21766
已知c=[1,3,5,7,9,11],max(c)+min(c)的值为?( )
电子学会-Python-L3
中等
--
A21767
默认小猫角色,以下哪个Scratch程序可以让小猫在5秒内在屏幕上滑行,并在滑行过程中同时说“你好!”( )
各校卷题-Scratch-L1
容易
--
A21768
有如下两行代码,请问代码运行之后,打印出的结果是?( )a = [1,2,3,4,3,2,3,4,2,1,4] print(list(set(a)))
电子学会-Python-L3
中等
--
A21769
下列程序,当输入 3.14时,运行结果为?( )a=input(str()) r=3 pi=float(a) print(pi*r**2)
电子学会-Python-L3
中等
--
A21770
默认小猫角色,Scratch运行以下代码后结果为?( )
各校卷题-Scratch-L1
容易
--
A21771
下列程序:c=[11,13,17,23,29,31] for a,i in _____________: print(a,i)运行后结果如下:0 111 132 173 234 295 31画线处的代码应该为?( )
电子学会-Python-L3
中等
--
A21772
下面Python代码的执行的结果是?( )c= ['低','碳'] a= tuple(c) print(a)
电子学会-Python-L3
中等
--
A21773
默认小猫角色,以下哪个Scratch程序可以在点击绿旗后让小猫说”你好!"一共10秒?( )
各校卷题-Scratch-L1
容易
--
A21774
在 Python 中,表达式 abs(-4.5) + int(-4.5) 的值是?( )
电子学会-Python-L3
中等
--
A21775
下列Python程序运行的结果为?( )a=([0,False,'']) b=[1,2,3,4,5,6,7,8,9] print(any(a)+all(b))
电子学会-Python-L3
中等
--
A21776
在Python中,min(["ABC", "BCD", "CDA"]) 的返回值是?( )
电子学会-Python-L3
中等
--
A21777
表达式divmod(7, 2)返回的结果是?( )
电子学会-Python-L3
中等
--
A21778
小明编写了如下代码,运行后屏幕上打印出的结果是?( )x = 8 y = [3,2,1,0] z = y.pop(1) try: a = int(x / z) except: print('程序出错!') else: pass finally: print(a)
电子学会-Python-L3
中等
--
A21779
下面Python代码运行之后的结果是?( )a = '2' b = '4' try: c = a * b print(c) except: print('程序出错!') else: print('程序正确!')
电子学会-Python-L3
中等
--
A21780
已知d=[3,1,4,1,5,9,2,6],在该序列中从前往后查找数字5,需要查找的次数是?( )
电子学会-Python-L3
中等
--