标签:str roo ast 多个 编写 auth clip 个数 div
本题目要求编写程序统计一行字符中单词的个数。所谓“单词”是指连续不含空格的字符串,各单词之间用空格分隔,空格数可以是多个。
输入给出一行字符。
在一行中输出单词个数。
Let‘s go to room 209.
5
1 # 统计一行文本的单词个数 2 # Author: cnRick 3 # Time : 2020-3-25 4 aStr_list = input().split() 5 result = len(aStr_list) 6 print(result)
标签:str roo ast 多个 编写 auth clip 个数 div
原文地址:https://www.cnblogs.com/dreamcoding/p/12570943.html