题解 | #字符串最后一个单词的长度#
字符串最后一个单词的长度
http://www.nowcoder.com/practice/8c949ea5f36f422594b306a2300315da
def laststringlen(s): L1 = s.split(' ') return len(L1[-1]) s = input().strip() print(laststringlen(s))
字符串最后一个单词的长度
http://www.nowcoder.com/practice/8c949ea5f36f422594b306a2300315da
def laststringlen(s): L1 = s.split(' ') return len(L1[-1]) s = input().strip() print(laststringlen(s))
相关推荐