Files
Python/strings/reverse_words.py
Tithi Joshi 8fa4161587 docs: improve docstring clarity in reverse_words (#14212)
Updated function name and docstring for clarity.
2026-01-25 13:54:15 +00:00

18 lines
397 B
Python

def reverse_words(sentence: str) -> str:
"""Reverse the order of words in a given string.
Extra whitespace between words is ignored.
>>> reverse_words("I love Python")
'Python love I'
>>> reverse_words("I Love Python")
'Python Love I'
"""
return " ".join(sentence.split()[::-1])
if __name__ == "__main__":
import doctest
doctest.testmod()