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

