Challenge: Calculate the Number of Uppercase and Lowercase Letters
Explore how to create a Python function that counts the number of uppercase and lowercase letters in a given string. Learn to process string input and return a dictionary with counts of each letter case, improving your understanding of functions and string manipulation.
We'll cover the following...
We'll cover the following...
Problem statement
Write a program that defines a function count_lower_upper() that accepts a string and calculates the ...