计算字符串最后一个单词的长度,单词以空格隔开。
一行字符串,非空,长度小于5000。
整数N,最后一个单词的长度。
hello world
5
1 import sys 2 strs = sys.stdin.readline() 3 print(len(strs.split()[-1]))