Python: Reverse a string word by word
Write a Python class to reverse a string word by word.
Sample Solution:
Python Code:
class py_solution:
def reverse_words(self, s):
return ' '.join(reversed(s.split()))
print(py_solution().reverse_words('hello .py'))
Sample Output:
.py hello
Pictorial Presentation:
Flowchart:
Python Code Editor:
Contribute your code and comments through Disqus.
Previous: Write a Python class to implement pow(x, n).
Next: Write a Python class which has two methods get_String and print_String. get_String accept a string from the user and print_String print the string in upper case.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics