NP20 增加派对名单(一)

This commit is contained in:
轩辕龙儿 2022-10-26 10:43:17 +08:00
parent 3e5da7ba6a
commit 01f838d55c

13
NP/NP20.py Normal file
View File

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