subject

Using Python 3, I need a function that takes as a parameter a string and returns a dictionary that tabulates how many of each letter is in that string and does not count spaces. The string should contain characters other than letters, but it will only count the letters(it will not count numbers or spaces). The string could even be the empty string (just ""). Lower-case and upper-case versions of a letter should be part of the same count. The keys of the dictionary should be upper-case letters. If a letter does not appear in the string, then it would not get added to the dictionary. If the string is: "AaBb278"
then the dictionary that is returned should contain these key-value pairs:

{'A': 2, 'B': 2}
Do not use the isalpha() funciton, the collection method or the import method.

ansver
Answers: 2

Another question on Computers and Technology

question
Computers and Technology, 21.06.2019 23:30
Me2540 week 5 assignment what do i want to know?
Answers: 1
question
Computers and Technology, 22.06.2019 01:20
What is the full meaning of rfid in computer
Answers: 2
question
Computers and Technology, 22.06.2019 21:50
Given int variables k and total that have already been declared, use a while loop to compute the sum of the squares of the first 50 counting numbers, and store this value in total. thus your code should put 11 + 22 + 33 + + 4949 + 50*50 into total. use no variables other than k and total.
Answers: 2
question
Computers and Technology, 24.06.2019 04:10
Write a program that reads a set of floating-point values. ask the user to enter the values, then print • the average of the values. • the smallest of the values. • the largest of the values. • the range, that is the difference between the smallest and largest. of course, you may only prompt for the values once.
Answers: 3
You know the right answer?
Using Python 3, I need a function that takes as a parameter a string and returns a dictionary that t...
Questions
question
English, 11.11.2021 14:00