How to write a Python program to find the largest substring of uppercase characters and print the length of that substring? Sample Input - I lovE PRogrAMMING Sample Output - 6 Explanation - AMMING is the largest substring with all characters in uppercase continuously.
stuck with this for more than an hour and still no clue :(
created a list out of the string by using the split method and no clue on what's next.