Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Python help You are given a list of strings. Make a dictionary with the leading

ID: 3772968 • Letter: P

Question

Python help
You are given a list of strings. Make a dictionary with the leading character of each string as key values. Count the number of times a string appears with the same leading character and then add that value to the corresponding key. Return dictionar Python help
You are given a list of strings. Make a dictionary with the leading character of each string as key values. Count the number of times a string appears with the same leading character and then add that value to the corresponding key. Return dictionar Python help

Explanation / Answer

Here I want to count the number of times each character is repeated in a string using Python

chars = "abcdefghijklmnopqrstuvwxyz"
check_string = "i am checking this string to see how many times each character appears"

for char in chars:
count = check_string.count(char)
if count > 1:
print char, count