Friday, 10 December 2021

Python-Slip9-Write a Python script using class to reverse a string word by word

 Write a Python script using class to reverse a string word by word   

class py_solution:

    def reverse_words(self, s):

        return ' '.join(reversed(s.split()))

print(py_solution().reverse_words('hello .doc'))