txt = input("Enter some text: ") txt = txt.lower() print() print("Count of A: ", txt.count("a")) print("Count of E: ", txt.count("e")) print("Count of I: ", txt.count("i")) print("Count of O: ", txt.count("o")) print("Count of U: ", txt.count("u"))