126 |
14、在Python中,以下哪个表达式可以将字符串'123'中的每个字符转换为对应的ASCII码值,并以列表形式返回?( ) A |
61 |
2024-04-21 |
127 |
13、想要在python中打开文件,在文件末尾添加新的内容,横线上应该填写的是( ) A、'r' B、'w' C、'a' D、 |
37 |
2024-04-21 |
128 |
12、对列表中的元素进行排序,应该使用哪个Python内置函数( ) A、sorted() B、max() C、abs() D、sum() |
92 |
2024-04-21 |
129 |
11、现有一个名为data的字典,要获得键为'name'所对应的值,正确的代码是( ) A、data(name) B、data('name') C |
61 |
2024-04-21 |
130 |
10、在Python中,专门用于生成随机数的库是( ) A、random B、math C、os D、sys |
51 |
2024-04-21 |
131 |
9、阅读以下程序,请问运行结束后会显示的是( ) x, y, z = 10, 20, 40 x, y = z/x, z-y z = x |
44 |
2024-04-21 |
132 |
8、python表达式8-3**2%5( ) A、-19 B、0 C、2 D、4 |
58 |
2024-04-21 |
133 |
7、已知字符串s='? an you ?an a ?an as a ?anner ?an?an a ?an'为被破坏的英文绕口令,想要复原绕口令,就需要 |
97 |
2024-04-21 |
134 |
6、某位初出茅庐的python初学者写出如下代码,程序执行后输出结果为 m = 2if m//3 != 0: print(m,'不能被3整 |
49 |
2024-04-21 |
135 |
5、阅读下面程序,假设键盘输入666,正确的输出是( ) number = input() str(number) int(number) p |
34 |
2024-04-21 |
136 |
4、阅读下面的代码,正确的输出是( ) x = ['N','O','C'] for i in x: x.append(i.l |
35 |
2024-04-21 |
137 |
3、使用字典统计字符串中每个字符出现的次数,横线上应该填写的代码是 dic = {} for c in 'an appl |
64 |
2024-04-21 |
138 |
2、执行完下面代码后,输出的结果为( ) ls = [6, 1, 8, 6, 9, 6] n = len(ls) for i in range |
65 |
2024-04-21 |
139 |
1、下面的程序,会无限循环下去的是( ) A:代码如下 for a in range(10000): time.sleep(10) B |
96 |
2024-04-21 |
140 |
39 #include <iostream> using namespace std; int main() int n,m; cin >n >m; int x =1,y 1; |
0 |
2024-04-21 |
141 |
40 #include <iostream> using namespace std; int main() { int n,m; cin >n>>m; int x 1, |
0 |
2024-04-21 |
142 |
38 #include <iostream> using namespace std; int main( { int n,m; cin >n>>m; int x =1, |
0 |
2024-04-21 |
143 |
37 #include <iostream> using namespace std; struct point { int x,y; : void add(point &a,point |
0 |
2024-04-21 |
144 |
36 已知二叉树的前序遍历顺序为ABDCEGHF,中序遍历顺序为DBAGEHCF,该二叉树的后序遍历为___ |
0 |
2024-04-21 |
145 |
35 int fun(int a,int b) if (b =0)return a; return fun(b,a b); 执行fun(84,119)函数返回值为___ |
0 |
2024-04-21 |
146 |
34 假设字符串5="NOC23",则s的非空子串的个数为 |
0 |
2024-04-21 |
147 |
33 假定一个二维数组的定义为char ch[8][8]:则该数组所占存储空间的字节总数为 |
0 |
2024-04-21 |
148 |
C++语言中的每条基本语句以___作为结束符。(请填英文符号) |
0 |
2024-04-21 |
149 |
31 对数组进行sort排序,reverse)反转,二分查找lower_.bound、upper_.bounds等操作需要包含头文件:<一>(本题横线 |
0 |
2024-04-21 |
150 |
30 阅读以下程序 #include <iostream> using namespace std; int cnt[10]=() void split(int x) while (x 0 |
0 |
2024-04-21 |