151.翻转字符串里的单词
Posted wjzheng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了151.翻转字符串里的单词相关的知识,希望对你有一定的参考价值。
class Solution: def reverseWords(self, s: str) -> str: if s == ‘‘: return s ls = s.split() # " " if ls == []: return ‘‘ result = ‘‘ for i in range(0, len(ls)): result += ls[-1 - i] + ‘ ‘ # strip()去除首尾空格 result = result.strip() return result
以上是关于151.翻转字符串里的单词的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode第151题—翻转字符串里的单词—Python实现
LeetCode第151题—翻转字符串里的单词—Python实现