class Solution:
# @param s, a string
# @return an integer
def lengthOfLastWord(self, s):
words=s.strip()#去掉前后空格
if words:
if words.count(' ')==0:#统计内部空格
return len(words)
else:
word=words.split()#根据空白拆分
return len(word[len(word)-1])
else:
return 0
Python学习——leetcode(Length of Last Word)
最新推荐文章于 2023-10-16 15:32:56 发布