赞
踩
输入一行,代表要计算的字符串,非空,长度小于5000。
输出一个整数,表示输入字符串最后一个单词的长度。
hello songsong
8
代码:
str_in = input().split(' ')print(len(str_in[-1]))