计算机二级 Python 真题
时间: 2025-01-03 22:37:43 浏览: 5
### 计算机二级 Python 考试真题
对于准备参加全国计算机二级Python考试的考生来说,熟悉历年真题是非常重要的。这不仅有助于了解考试的形式和难度,还能帮助提高解题技巧。
#### 题目一:统计各行业就业学生数量并排序
题目描述如下:
键盘输入某班各个同学就业的行业名称,行业名称之间用空格间隔(回车结束输入)。编写 Python 代码来统计各行业就业的学生数量,并按照数量从高到低的方式输出[^2]。
下面是实现该功能的一个可能版本的 Python 代码:
```python
from collections import Counter
def count_industries():
industries_input = input("请输入同学们就业的行业名称(多个行业间用空格分隔):")
industries_list = industries_input.split()
industry_counts = Counter(industries_list)
sorted_industries = sorted(industry_counts.items(), key=lambda item: item[1], reverse=True)
for industry, count in sorted_industries:
print(f"{industry}: {count}人")
if __name__ == "__main__":
count_industries()
```
这段程序首先读取用户通过键盘输入的一串字符串形式的行业名列表,接着利用 `collections.Counter` 来计数每个行业的出现次数,最后根据这些数值降序排列并将结果打印出来。
#### 大头博士题库的优势
关于备考资源的选择方面,“大头博士”的题库因其友好的操作界面以及高效的评分系统而受到不少考生的好评[^1]。这类高质量的学习材料能够有效辅助学习者更好地掌握知识点并通过模拟测试检验自身的实际应用能力。
阅读全文