58. Length of Last Word

Posted PirateLHX

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了58. Length of Last Word相关的知识,希望对你有一定的参考价值。

class Solution(object):
    def lengthOfLastWord(self, s):
        """
        :type s: str
        :rtype: int
        """
        res=s.split()
        if len(res)!=0:
            return len(res[-1])
        else:
            return 0

  

以上是关于58. Length of Last Word的主要内容,如果未能解决你的问题,请参考以下文章

58. Length of Last Word

LeetCode 58. Length of Last Word

#Leetcode# 58. Length of Last Word

58. Length of Last Word [easy] (Python)

58. Length of Last Word

58. Length of Last Word