题解 | #发送offer#
发送offer
https://www.nowcoder.com/practice/66969869634b4142ac371684fcf89764
offer_list=["Allen","Tom"]
print(offer_list[0],", you have passed our interview and will soon become a member of our company.",sep='')
print(offer_list[1],", you have passed our interview and will soon become a member of our company.",sep='')
offer_list.pop(1)
offer_list.append("Andy")
print(offer_list[0],", welcome to join us!",sep='')
print(offer_list[1],", welcome to join us!",sep='')
用土方法,sep函数可以用来设置对象连接符,默认是空格符,删掉空格就是无内容,刚好达到系统要求

