Counting number of upper case and lower case characters in a given string – python lab program
This program uses “for” loop to process the string. islower() and isupper() functions are used to check whether the current character of the string is in lower case or in upper case.