Write a Python Program to find sequences of one upper case letter followed by lower case letters. If found, print ‘Yes’, otherwise ‘No’.
Examples:
Input : Geeks
Output : Yes
Input : geeksforgeeks
Output : No
Python regex to find sequences of one upper case letter followed by lower case letters
Using re.search() To check if the sequence of one upper case letter followed by lower case letters we use regular expression ‘[A-Z]+[a-z]+$’.
Python3
import re
from collections import Counter
def most_occr_element(word):
arr = re.findall(r '[0-9]+' , word)
maxm = 0
max_elem = 0
c = Counter(arr)
for x in list (c.keys()):
if c[x]> = maxm:
maxm = c[x]
max_elem = int (x)
return max_elem
if __name__ = = "__main__" :
word = 'geek55of55gee4ksabc3dr2x'
print (most_occr_element(word))
|
Output:
Yes
Yes
No
Time complexity: O(n), where n is length of string.
Auxiliary Space: O(1)
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
31 Jul, 2023
Like Article
Save Article