strings.reverse_words ===================== .. py:module:: strings.reverse_words Functions --------- .. autoapisummary:: strings.reverse_words.reverse_words Module Contents --------------- .. py:function:: reverse_words(input_str: str) -> str Reverses words in a given string >>> reverse_words("I love Python") 'Python love I' >>> reverse_words("I Love Python") 'Python Love I'