text = input("Enter text: ").lower() vowels = "aeiou" for v in vowels: print(f"{v}: {text.count(v)}")