NP17 生成列表

This commit is contained in:
轩辕龙儿 2022-10-26 09:58:03 +08:00
parent 7ac0ef9eb5
commit a7e783e361

13
NP/NP17.py Normal file
View File

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