Help for this page

Select Code to Download


  1. or download this
    >>> def reverseWords(words):
    ...     return ' '.join(words.split()[::-1])
    ... 
    >>> reverseWords("  one   two three four    ")
    'four three two one'