w3resource

Python: Matches a string that has an a followed by three 'b'

Python Regular Expression: Exercise-5 with Solution

Write a Python program that matches a string that has an a followed by three 'b'.

Sample Solution:

Python Code:

import re
def text_match(text):
        patterns = 'ab{3}?'
        if re.search(patterns,  text):
                return 'Found a match!'
        else:
                return('Not matched!')

print(text_match("abbb"))
print(text_match("aabbbbbc"))

Sample Output:

Found a match!                                                                                                
Found a match!

Pictorial Presentation:

Python: Regular Expression - Matches a string that has an <em>a</em> followed by three 'b'.
Python: Regular Expression - Matches a string that has an <em>a</em> followed by three 'b'.

Flowchart:

Flowchart: Regular Expression - Matches a string that has an <em>a</em> followed by three 'b'.

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 zero or one 'b'.
Next: Write a Python program that matches a string that has an a followed by two to three 'b'.

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.