NP16 发送offer
This commit is contained in:
parent
e43a072121
commit
7ac0ef9eb5
15
NP/NP16.py
Normal file
15
NP/NP16.py
Normal 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))
|
Loading…
Reference in New Issue
Block a user