NP21 增加派对名单(二)

This commit is contained in:
轩辕龙儿 2022-10-26 10:46:12 +08:00
parent 01f838d55c
commit bde4b7fbf5

13
NP/NP21.py Normal file
View File

@ -0,0 +1,13 @@
#!/usr/bin/env python3
# @author 轩辕龙儿
# @date 2022/10/26
# @file NP21.py
def solution():
nameList = input().split()
nameList.insert(0, "Allen")
print(nameList)
if __name__ == "__main__":
solution()