Python: Matches a string that has an a followed by two to three 'b'
Write a Python program that matches a string that has an a followed by two to three 'b'.
Sample Solution:
Python Code:
import re
def text_match(text):
patterns = 'ab{2,3}'
if re.search(patterns, text):
return 'Found a match!'
else:
return('Not matched!')
print(text_match("ab"))
print(text_match("aabbbbbc"))
Sample Output:
Not matched! Found a match!
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 that matches a string that has an a followed by three 'b'.
Next: Write a Python program to find sequences of lowercase letters joined with a underscore.
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