题解 | #派对名单#
投递简历
http://www.nowcoder.com/practice/7b8ef71449384e8db83aa53e2c8cb1fb
compny_list=['Alibaba', 'Baidu', 'Tencent', 'MeiTuan', 'JD'] for i in compny_list: print('Hello 'f'{i}'', here is my resume!') print() del compny_list[0] compny_list.pop(3) compny_list.pop(2) compny_list.remove('Tencent') for i in compny_list: print(f'{i}'', thank you for passing my resume. I will attend the interview on time!')