82.py 1 2 3 4 5 6 7 8 9 10 11 12def count_vowels(text): count = 0 for char in text.lower(): if char in "aeiou": count += 1 return count text = input("Enter A String : ") print(f"Vowel Count : {count_vowels(text)}")