strings.reverse_words

Functions

reverse_words(→ str)

Reverse the order of words in a given string.

Module Contents

strings.reverse_words.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'