NP19. 列表的长度
描述
输入描述
输入一行多个字符串,字符串之间通过空格间隔。输出描述
输出列表的长度。示例1
输入:
NiuNiu NiuMei NiuNeng
输出:
3
Python 解法, 执行用时: 10ms, 内存消耗: 2948KB, 提交时间: 2022-07-29
name = raw_input() a = name.split() print(len(a))
Python 解法, 执行用时: 11ms, 内存消耗: 2944KB, 提交时间: 2022-08-05
a = raw_input() l2 = [] for i in a.split(): l2.append(str(i)) print(len(l2))
Python 解法, 执行用时: 11ms, 内存消耗: 2952KB, 提交时间: 2022-07-31
s = raw_input() l = s.split() print(len(l))
Python 3 解法, 执行用时: 28ms, 内存消耗: 4472KB, 提交时间: 2022-08-02
n = input() x = n.split() print(len(x))
Python 3 解法, 执行用时: 28ms, 内存消耗: 4480KB, 提交时间: 2022-08-01
a=input() b=a.split() print(len(b))