前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Python 入门与基础《刷题篇》(1)

Python 入门与基础《刷题篇》(1)

作者头像
吉师散养基地
发布2022-11-21 14:23:09
2400
发布2022-11-21 14:23:09
举报
文章被收录于专栏:我奏是太阳

目录

第一题

描述

输入描述:

输出描述:

第二题

描述

输入描述:

输出描述:

第三题

描述

输入描述:

输出描述:

附言


第一题

描述

某公司在面试结束后,创建了一个依次包含字符串 'Allen' 和 'Tom' 的列表offer_list,作为通过面试的名单。

请你依次对列表中的名字发送类似 'Allen, you have passed our interview and will soon become a member of our company.' 的句子。

但由于Tom有了其他的选择,没有确认这个offer,HR选择了正好能够确认这个offer的Andy,所以请把列表offer_list中 'Tom' 的名字换成 'Andy' ,

再依次发送类似 'Andy, welcome to join us!' 的句子。

输入描述:

输出描述:

按题目描述进行输出即可。

Allen, you have passed our interview and will soon become a member of our company. Tom, you have passed our interview and will soon become a member of our company.

Allen, welcome to join us! Andy, welcome to join us!

由题意推得

代码语言:javascript
复制
offer_list = ['Allen','Tom']
for na in offer_list:
    print(na + ", you have passed our interview and will soon become a member of our company.")
offer_list[1] = 'Andy'
for me in offer_list:
    print(me + ", welcome to join us!")

创建列表后,一个简单的for循环,解决问题。

第二题

描述

为庆祝驼瑞驰在牛爱网找到合适的对象,所以驼瑞驰创建了一个依次包含字符串 'Niuniu' 和 'Niu Ke Le' 的列表guest_list,作为庆祝派对的邀请名单。

请你依次对列表中的名字发送类似'Niuniu, do you want to come to my celebration party?'的句子。

驼瑞驰的好朋友牛牛、GURR哥和LOLO姐也正好有空,所以请使用insert()方法把字符串'GURR'插入到列表guest_list的开头,

再使用insert()方法把字符串'Niumei'插入到字符串'Niu Ke Le'的前面,再使用append()方法把字符串'LOLO'插入到列表guest_list的最后,

再依次发送类似'Niuniu, thank you for coming to my celebration party!'的句子。

输入描述:

输出描述:

按题目描述进行输出即可(注意前后两个输出部分需以一个空行进行分隔)。

Niuniu, do you want to come to my celebration party? Niu Ke Le, do you want to come to my celebration party? GURR, thank you for coming to my celebration party! Niuniu, thank you for coming to my celebration party! Niumei, thank you for coming to my celebration party! Niu Ke Le, thank you for coming to my celebration party! LOLO, thank you for coming to my celebration party!

代码语言:javascript
复制
guest_list = ['Niuniu','Niu Ke Le']
for name in guest_list:
    print(name + ', do you want to come to my celebration party?')
print()
guest_list.insert(0,'GURR')
guest_list.insert(2,'Niumei')
guest_list.append('LOLO')

for friend in guest_list:
    print(friend + ', thank you for coming to my celebration party!')

还是使用for 循环,不过后面加入了insert(x,t)方法,可以理解成让t成为第x号元素,append即将括号内字符串插入文章末尾。

第三题

描述

毕业季到了,牛牛为了找工作准备了自己简历,以及投递公司的列表company_list,其中包括了字符串 'Alibaba', 'Baidu', 'Tencent', 'MeiTuan', 'JD' 作为他投递简历的目标公司。

请向列表中每个公司发送一条消息类似 'Hello Alibaba, here is my resume!'。

然而,遗憾的是Alibaba、Tencent、MeiTuan、JD都没有通过牛牛的简历审核,只有Baidu回复了他,邀请他去参加面试。因此你需要:

使用 del() 函数删除列表company_list中的字符串 'Alibaba'.

使用 pop() 函数依次删除列表company_list中的字符串'JD','MeiTuan'.

使用 remove() 函数删除列表company_list中的字符串'Tencent'.

最后向列表中的剩余的公司发送类似 'Baidu, thank you for passing my resume. I will attend the interview on time!' 的消息。

输入描述:

输出描述:

按题目描述进行输出即可(注意前后两个输出部分需以一个空行进行分隔)。

Hello Alibaba, here is my resume! Hello Baidu, here is my resume! Hello Tencent, here is my resume! Hello MeiTuan, here is my resume! Hello JD, here is my resume!

Baidu, thank you for passing my resume. I will attend the interview on time!

代码语言:javascript
复制
company_list =  ['Alibaba', 'Baidu', 'Tencent', 'MeiTuan', 'JD']
for name in company_list:
    print('Hello ' + name + ', here is my resume!')
del company_list[0]
company_list.pop(3)
company_list.pop(2)
company_list.remove('Tencent')
print()
for me in company_list:
    print(me + ', thank you for passing my resume. I will attend the interview on time!')

del即将第x号元素删除。

pop是将第x号元素弹出,当你每次使用pop时,弹出的元素就不在列表中了,但依旧可以调用。

remove则是将未知位置,已知值的元素删除,即无论该值在何处,只要已知值,即可删除。

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2022-10-07,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 第一题
  • 描述
    • 输入描述:
      • 输出描述:
      • 第二题
      • 描述
        • 输入描述:
          • 输出描述:
          • 第三题
          • 描述
            • 输入描述:
              • 输出描述:
              领券
              问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档