forked from Harsh151200/Beginner-Python-Projects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcount-vowels.py
29 lines (21 loc) · 798 Bytes
/
count-vowels.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
"""
Count Vowels - Enter a string and the program counts the number of vowels in
the text. For added complexity have it report a sum of each vowel found
"""
class Vowels:
def __init__(self, text):
self.vowel = {'a': 0, 'e': 0, 'i': 0, 'o': 0, 'u': 0}
self.text = list((text).lower())
for letter in self.text:
if letter in self.vowel.keys():
self.vowel[letter] += 1
def count_each_vowel(self):
return self.vowel
def count_vowels(self):
return sum(self.vowel.values())
text = input("Enter a string/text : ")
x = Vowels(text)
print(f"\nTotal vowels in given string are : {x.count_vowels()} \n")
print(f"--- Count of each vowel in give string ---")
for key, value in x.vowel.items():
print(f"{key} : {value}")