Python: Reverse a string word by word
Python Class: Exercise-8 with Solution
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.
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://198.211.115.131/python-exercises/class-exercises/python-class-exercise-8.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics