毕业季到了,牛牛为了找工作准备了自己简历,以及投递公司的列表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!
加载中...