Given a string s consisting of words and spaces, return the length of the last word in the string.
def lengthOfLastWord(self, s: str) -> int: return len(s.rstrip(' ').split(' ')[-1])