题解 | #列表的长度#
列表的长度
https://www.nowcoder.com/practice/2b32ef2fd5bb42159e01121fac9fd496
import sys str=input() str_list=str.split(' ') print(len(str_list))
列表的长度
https://www.nowcoder.com/practice/2b32ef2fd5bb42159e01121fac9fd496
import sys str=input() str_list=str.split(' ') print(len(str_list))
相关推荐