Help for this page

Select Code to Download


  1. or download this
    [word for word in words.split()] ?
    
  2. or download this
    def reverseWords(words):
        return ' '.join(words.split()[::-1])