题解 | #投递简历#
投递简历
http://www.nowcoder.com/practice/7b8ef71449384e8db83aa53e2c8cb1fb
for ld in company_list:
print( 'Hello %s, here is my resume!'%ld)
del company_list[company_list.index('Alibaba')]
company_list.pop(company_list.index('JD'))
company_list.pop(company_list.index('MeiTuan'))
company_list.remove('Tencent')
print()
for ld in company_list:
print('%s, thank you for passing my resume. I will attend the interview on time!' %ld)