input_string = input("enter the string").casefold() vowel_string = "aeiou" count_dic = {} for word in input_string: if word not in vowel_string: pass else: count_dic[word] =+ 1 print(count_dic)
@AsToldByRoro20244 жыл бұрын
Thank you very much but what if I want to count count the least occurrence Can you help please ?
@srikantbattula84083 жыл бұрын
Continue the great work
@ExampleProgram3 жыл бұрын
Sure Thank you 🙏
@applegames96003 жыл бұрын
why when i run this code does it say my thing i enter is not difined
@ExampleProgram3 жыл бұрын
Make sure that you have not misspelled variable name