题解 | #投递简历#
投递简历
http://www.nowcoder.com/practice/7b8ef71449384e8db83aa53e2c8cb1fb
company_list = ['Alibaba', 'Baidu', 'Tencent', 'MeiTuan', 'JD']
for i in range(len(company_list)):
print('Hello ' + company_list[i] +', here is my resume!')
print()
del company_list[0]
i = 0
while i < 2:
company_list.pop()
i += 1
company_list.remove('Tencent')
print(company_list[0] + ', thank you for passing my resume. I will attend the interview on time!')

查看27道真题和解析