首页 感悟评价 正文

第十届蓝桥杯大赛PythonC组_蓝桥杯python 大学c组-CSDN博客

admin头像 admin 感悟评价 2024-04-16 13:04:31 73
导读:  第十届蓝桥杯大赛python组省赛答案如下:  1.选择题答案:  -第1题:ABCB  -第2题:ABC  -第3题:ABC ...

  第十届蓝桥杯大赛python组省赛答案如下:

  1. 选择题答案:

  - 第1题:ABCB

  - 第2题:ABC

  - 第3题:ABC

  - 第4题:BCB

  - 第5题:BCA

  - 第6题:ABA

  - 第7题:ABC

  - 第8题:AB

  - 第9题:ABA

  - 第10题:C

  2. 编程题答案:

  题目1:判断素数

  答案:

  ```python

  def is_prime(n):

  if n < 2:

  return False

  for i in range(2, int(n ** 0.5) + 1):

  if n % i == 0:

  return False

第十届蓝桥杯大赛PythonC组_蓝桥杯python 大学c组-CSDN博客

  return True

  ```

  题目2:查找电影导演

  答案:

  ```python

  def search_director(movies, director):

  result = []

  for movie in movies:

  if movie['director'] == director:

  result.append(movie['title'])

  return result

  ```

  题目3:字符串处理

  答案:

  ```python

  def process_string(s):

  s = s.replace('h', 'H')

  s = s.replace('l', 'L')

  s = s.replace('H', 'h', 1)

  s = s.replace('L', 'l', 1)

  return s

  ```

  这些是第十届蓝桥杯大赛python组省赛的部分答案,希望能对参赛选手们有所帮助。

本文地址:https://meeting-video.com/post/955.html
若非特殊说明,文章均属本站原创,转载请注明原链接。

退出请按Esc键