统计字符串中的单词个数,这里的单词指的是连续的不是空格的字符。
请注意,你可以假定字符串里不包括任何不可打印的字符。
class Solution: def countSegments(self, s: str) -> int: s=s.split() return len(s)
class Solution: def countSegments(self, s: str) -> int: s = s.split(' ') cnt = 0 for i in s: if i!= '':cnt+=1 return cnt 作者:mrfan-ren-o 链接:https://leetcode-cn.com/problems/number-of-segments-in-a-string/solution/pythontong-su-yi-dong-mei-sha-hao-shuo-d-lkp6/ 来源:力扣(LeetCode) 著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。