题解 | #发送offer#
发送offer
https://www.nowcoder.com/practice/66969869634b4142ac371684fcf89764
offer_list = ["Allen", "Tom"]
for name in offer_list:
print(
"{}, you have passed our interview and will soon become a member of our company.".format(name))
offer_list.remove('Tom')
offer_list.append('Andy')
for name in offer_list:
print("{}, welcome to join us!".format(name))
格式化输出
查看7道真题和解析