写点什么

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

  • 2022 年 9 月 26 日
    吉林
  • 本文字数:1984 字

    阅读完需:约 7 分钟

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

前言


今天开个新坑:《刷题篇》,每篇文章 3~4 道 python 题,刷出新高度

第一题

描述

某公司在面试结束后,创建了一个依次包含字符串 '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!


由题意推得

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!


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!


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 则是将未知位置,已知值的元素删除,即无论该值在何处,只要已知值,即可删除。


发布于: 刚刚阅读数: 3
用户头像

还未添加个人签名 2022.08.25 加入

还未添加个人简介

评论

发布
暂无评论
Python 入门与基础《刷题篇》(1)_九月月更_吉师职业混子_InfoQ写作社区