题解 | #发送offer#
发送offer
https://www.nowcoder.com/practice/66969869634b4142ac371684fcf89764
offer_list = []
offer_list.append("Allen")
offer_list.append("Tom")
for i in range(0, 2):
print(f"%s, you have passed our interview and will soon become a member of our company." %offer_list[i])
offer_list[1] = "Andy"
for i in range(0, 2):
print(f"%s, welcome to join us!" %offer_list[i])
查看13道真题和解析