题解 | 发送offer
offer_list=['Allen','Tom'] for i in offer_list: print('{}, you have passed our interview and will soon become a member of our company.'.format(i)) offer_list[1]=('Andy') for j in offer_list: print('{}, welcome to join us!'.format(j))
offer_list=['Allen','Tom'] for i in offer_list: print('{}, you have passed our interview and will soon become a member of our company.'.format(i)) offer_list[1]=('Andy') for j in offer_list: print('{}, welcome to join us!'.format(j))
相关推荐