题解 | #翻转单词顺序列#
翻转单词顺序列
http://www.nowcoder.com/practice/3194a4f4cf814f63919d0790578d51f3
【剑指offer】翻转单词顺序(Python)
1. str.split(str="", num=string.count(str)).
str -- 分隔符,默认为所有的空字符,包括空格、换行(\n)、制表符(\t)等。
num -- 分割次数。默认为 -1, 即分隔所有。
2. list转string
命令:''.join(list),其中,引号中是字符之间的分割符,如“,”,“;”,“\t”等等
3. 特殊情况,如字符串为空,分割后的数组为空
# -*- coding:utf-8 -*- class Solution: def ReverseSentence(self, s): # write code here list = s.split() if list: list.reverse() result = ' '.join(list) return result else: return s