Python program that accepts a sentence and builds a dictionary
Python program that accepts a sentence and builds a dictionary Problem Definition: Develop a python program that accepts a sentence and builds a dictionary with LETTER, DIGITS, LOWERCASE, and UPPERCASE as key values and their count in the sentence as the values. Example: Str = VTU@123.e-Learning Output: d = {“LETTER”: 12, “DIGITS”: 3, “LOWERCASE”: 8, “UPPERCASE”: 4} […]
Python program that accepts a sentence and builds a dictionary Read More »