列表

详情


NP19. 列表的长度

描述

牛牛学会了使用list函数与split函数将输入的连续字符串封装成列表,你能够帮他使用len函数统计一些公输入了多少字符串,列表中有多少元素吗?

输入描述

输入一行多个字符串,字符串之间通过空格间隔。

输出描述

输出列表的长度。

示例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))

上一题