text = input ("enter the text: ") string = text.lower() print(string) count = 0 list1 = ["a", "e", "i", "o", "u"] for char in string: if char in list1: count = count+1 print("number vowels in the given text is: ", count)