company_list = ['Alibaba', 'Baidu', 'Tencent', 'MeiTuan', 'JD']
hello_words = "Hello {0}, here is my resume!"
attend_words = "{0}, thank you for passing my resume. I will attend the interview on time!"
[print(hello_words.format(company)) if company != "JD" else print(hello_words.format(company), end="\n\n") for company in company_list ]
del(company_list[0])
[company_list.pop() for _ in range(2)]
company_list.remove("Tencent")
[print(attend_words.format(company)) for company in company_list]