Python: Reverse all the words which have even length
Reverse Odd-Length Words
Write a Python program to reverse all words of odd lengths.
Sample Solution:
Python Code:
Sample Output:
The quick brown fox jumps revo the yzal dog nohtyP Exercises
Explanation:
Here is a breakdown of the above Python code:
- Function definition:
- The code defines a function named "reverse_even()" that reverses the even-length words in a given text.
- Word reversal:
- A list comprehension is used to iterate over words in the text.
- For each word, it checks if the length is even (len(i) % 2 == 0). If so, it reverses the word; otherwise, it leaves it unchanged.
- Joining Modified Words:
- The modified words are joined into a single string using ' '.join(...).
Visual Presentation:
Flowchart:

For more Practice: Solve these Related Problems:
- Write a Python program to reverse each word in a sentence that has an odd number of characters.
- Write a Python program to process a string and invert the letters of words with odd lengths while leaving even-length words unchanged.
- Write a Python program to identify odd-length words in a string and output their reversed forms in place.
- Write a Python program to transform a sentence by reversing only those words whose length is odd.
Go to:
Previous: Write a Python program to compute the digit distance between two integers.
Next: Write a Python program to print letters from the English alphabet from a-z and A-Z.
Python Code Editor:
Have another way to solve this solution? Contribute your code (and comments) through Disqus.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.