题解 | #发送offer#
发送offer
https://www.nowcoder.com/practice/66969869634b4142ac371684fcf89764
m_string =", you have passed our interview and will soon become a member of our company."
m1_string = ", welcome to join us!"
off_list=["Allen","Tom"]
print(off_list[0]+m_string)
print(off_list[1]+m_string)
print(off_list[0]+m1_string)
print("Andy"+m1_string)
