码迷,mamicode.com
首页 > 编程语言 > 详细

【leetcode?python】 58. Length of Last Word

时间:2016-10-31 20:51:08      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:pytho   ast   leetcode   one   code   ret   type   last   函数   

#很简单,利用strip函数去除左右两边的空格,然后用split函数分割成列表

class Solution(object):
    def lengthOfLastWord(self, s):
        """
        :type s: str
        :rtype: int
        """
        if s==None:return 0
        slist=s.strip().split(‘ ‘)
        
        return len(slist[-1])

【leetcode?python】 58. Length of Last Word

标签:pytho   ast   leetcode   one   code   ret   type   last   函数   

原文地址:http://www.cnblogs.com/kwangeline/p/6016917.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!