题解 | #发送offer#
发送offer
https://www.nowcoder.com/practice/66969869634b4142ac371684fcf89764
'''offer_list=['Allen','Tom']
for i in offer_list:
print(f'{i}, you have passed our interview and will soon become a member of our company.')
offer_list.pop(1)
offer_list.append('Andy')
for i in offer_list:
print(f'{i}, welcome to join us!')'''
offer_list=['Allen','Tom']
for i in offer_list:
print(f'{i}, you have passed our interview and will soon become a member of our company.')
offer_list.pop(1)
offer_list.insert(1,'Andy')
for i in offer_list:
print(f'{i}, welcome to join us!')

