w3resource

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


6. a Followed by 2 to 3 b's

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:

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

Flowchart:

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

For more Practice: Solve these Related Problems:

  • Write a Python program to match strings where 'a' is followed by either two or three 'b's using regex.
  • Write a Python program to filter a list of strings and output only those that match the pattern 'a' followed by two or three 'b's.
  • Write a Python script that validates input strings against the pattern 'a' followed by 2 to 3 'b's, printing an appropriate message.
  • Write a Python program to extract substrings from a text that conform to the regex for 'a' followed by two to three 'b's.

Go to:


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.

Python Code Editor:

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

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.