题解 | #字符串最后一个单词的长度#
字符串最后一个单词的长度
https://www.nowcoder.com/practice/8c949ea5f36f422594b306a2300315da
string1=input() list1 = string1.split() last_word_length=len(str(list1[-1])) print(last_word_length)
字符串最后一个单词的长度
https://www.nowcoder.com/practice/8c949ea5f36f422594b306a2300315da
string1=input() list1 = string1.split() last_word_length=len(str(list1[-1])) print(last_word_length)
相关推荐