w3resource

Python: Find the sequences of one upper case letter followed by lower case letters

Python Regular Expression: Exercise-8 with Solution

Write a Python program to find the sequences of one upper case letter followed by lower case letters.

Sample Solution:

Python Code:

import re
def text_match(text):
        patterns = '[A-Z]+[a-z]+$'
        if re.search(patterns, text):
                return 'Found a match!'
        else:
                return('Not matched!')
print(text_match("AaBbGg"))
print(text_match("Python"))
print(text_match("python"))
print(text_match("PYTHON"))
print(text_match("aA"))
print(text_match("Aa"))

Sample Output:

Found a match!
Found a match!
Not matched!
Not matched!
Not matched!
Found a match! 

Flowchart:

Flowchart: Regular Expression - Find the sequences of one upper case letter followed by lower case letters.

Python Code Editor:

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

Previous: Write a Python program to find the sequences of lowercase letters joined with a underscore.
Next: Write a Python program that matches a string that has an 'a' followed by anything, ending in '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.