假设我们有一串用空格分隔的单词;我们必须颠倒单词的顺序。
因此,如果输入就像“ Hello world,我爱python编程”,那么输出将是“对python love I world,你好编程”。
为了解决这个问题,我们将遵循以下步骤-
temp:=使用空格将s分割成单词列表
temp:=反转列表温度
通过使用空格定界符从temp联接元素来返回字符串。
让我们看下面的实现以更好地理解-
class Solution: def solve(self, s): temp = s.split(' ') temp = list(reversed(temp)) return ' '.join(temp) ob = Solution()sentence = "Hello world, I love python programming" print(ob.solve(sentence))
"Hello world, I love python programming"
输出结果
programming python love I world, Hello