【公开题库】期中冲刺练习题库
一套包含了热门选择题考点的题库,适合反复练习
0题目
0已练习
0%你的正确率
~0 分钟预计时间
List 列表
What is the value of xs after the following is evaluated?xs = 'hello' ys = xs[:] ys = ys.upper()
Function Basics 函数基础
What is the best description of the behaviour of the following function?def check(xs: list, val) -> int: count = 0 for x in xs: if x == val: count += 1 return count
Function Basics 函数基础
What is the value of result after only the following code is run?result = [] for x in range(6): if x == 2 or 3: result.append(x)
Function Basics 函数基础
What is the best description of the behaviour of the following function?def mystery(xs: list[int]) -> bool: for i in range(len(xs) - 1): if xs[i] > xs[i + 1]: return False return True
Function Basics 函数基础
What is the value of count after the following code is run?count = 0 for x in 'Hello World': if x == 'l' or x == 'o': count += 1
你的进度
0%0 / 29
已练 0 / 29 · 正确率 0%