|
Reverse the order of words in a given string. |
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'