NP16 发送offer

This commit is contained in:
轩辕龙儿 2022-10-26 09:36:37 +08:00
parent e43a072121
commit 7ac0ef9eb5

15
NP/NP16.py Normal file
View File

@ -0,0 +1,15 @@
#!/usr/bin/env python3
# @author 轩辕龙儿
# @date 2022/10/26
# @file NP16.py
list = ["Allen", "Tom"]
for i in list:
print(
"{}, you have passed our interview and will soon become a member of our company.".format(
i
)
)
list.remove("Tom")
list.append("Andy")
for i in list:
print("{}, welcome to join us!".format(i))