I’m trying to create a program where if you input a word, it will print out each letter of the word and how many times the letter appears in that word.
Eg; when I input “aaaarggh”, the output should be “a 4 r 1 g 2 h 1”.
JavaScript
x
15
15
1
def compressed (word):
2
count = 0
3
index = 0
4
while index < len(word):
5
letter = word[index]
6
for letter in word:
7
index = index + 1
8
count = count + 1
9
print(letter, count)
10
break
11
12
print("Enter a word:")
13
word = input()
14
compressed(word)
15
So far it just prints out each letter and position in the word. Any help appreciated, thank you!
(no using dict method)
Advertisement
Answer
JavaScript
1
6
1
a="aaaarggh"
2
d={}
3
for char in set(a):
4
d[char]=a.count(char)
5
print(d)
6
output
JavaScript
1
2
1
{'a': 4, 'h': 1, 'r': 1, 'g': 2}
2