w3resource

Python: Remove words from a string of length between 1 and a given number

Python Regular Expression: Exercise-49 with Solution

Write a Python program to remove words from a string of length between 1 and a given number.

Sample Solution:

Python Code:

import re
text = "The quick brown fox jumps over the lazy dog."
# remove words between 1 and 3
shortword = re.compile(r'\W*\b\w{1,3}\b')
print(shortword.sub('', text))

Sample Output:

quick brown jumps over lazy.

Pictorial Presentation:

Python: Remove words from a string of length between 1 and a given number.

Flowchart:

Flowchart: Regular Expression - Remove words from a string of length between 1 and a given number.

Python Code Editor:

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

Previous: Write a Python program to check a decimal with a precision of 2.
Next: Write a Python program to remove the parenthesis area in a string.

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.