w3resource

Python: Reverse all the words which have even length

Python Basic - 1: Exercise-113 with Solution

Write a Python program to reverse all words of odd lengths.

Sample Solution:

Python Code:

def reverse_even(txt):
         return ' '.join(i[::-1] if not len(i)%2 else i for i in txt.split())
print(reverse_even("The quick brown fox jumps over the lazy dog"))
print(reverse_even("Python Exercises"))

Sample Output:

The quick brown fox jumps revo the yzal dog
nohtyP Exercises

Pictorial Presentation:

Python: Reverse all the words which have even length.

Flowchart:

Flowchart: Python - Reverse all the words which have even length.

Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

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.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.