题解 | #发送offer#
发送offer
https://www.nowcoder.com/practice/66969869634b4142ac371684fcf89764
offer_list=['Allen','Tom']
for i in offer_list:
print("%s, you have passed our interview and will soon become a member of our company."%i)
offer_list[1]='Andy'
for j in offer_list:
print("%s, welcome to join us!"%j)
要注意输出格式,实质上还是格式化的输出,之前学的{ }。format到这里又忘了
