Python: Remove words from a string of length between 1 and a given number
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:
Flowchart:
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.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics