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