Given an input string, reverse the string word by word.
For example,
Given s = "the sky is blue",
return "blue is sky the".
Clarification:
Python比较简单。。。本身提供的函数就能满足。。。
- What constitutes a word?
A sequence of non-space characters constitutes a word. - Could the input string contain leading or trailing spaces?
Yes. However, your reversed string should not contain leading or trailing spaces. - How about multiple spaces between two words?
Reduce them to a single space in the reversed string.
class Solution:
# @param s, a string
# @return a string
def reverseWords(self, s):
s=s.split() #按空格分割,不管中间几个空格,返回列表
s.reverse() #列表倒置
s=' '.join(s)#把空格插入。。。
return s
本文将介绍如何使用Python简洁地实现字符串单词反转,包括如何处理输入字符串中的多个空格和特殊字符,确保最终输出的字符串中没有多余的空格。
499

被折叠的 条评论
为什么被折叠?



