NP19 列表的长度

This commit is contained in:
轩辕龙儿 2022-10-26 10:37:03 +08:00
parent ba1b1f31ce
commit 3e5da7ba6a

11
NP/NP19.py Normal file
View File

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