题解 | #发送offer#
发送offer
https://www.nowcoder.com/practice/66969869634b4142ac371684fcf89764
#打印字符用sqp去掉空格,中间的空格写到字符串里面去 name_list = ['Allen','Tom'] word_1 = 'you have passed our interview and will soon become a member of our company.' word_2 = 'welcome to join us!' num_offer = int(len(name_list)) for i in range(num_offer): print(name_list[i],", ",word_1, sep='') name_list[1] = 'Andy' for i in range(num_offer): print(name_list[i],", " , word_2,sep='')

