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:
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.
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://198.211.115.131/python-exercises/re/python-re-exercise-8.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics