Thank you very much but what if I want to count count the least occurrence Can you help please ?
@bristymarjia174 жыл бұрын
Thanks a lot you. It saved my hours of time.
@ExampleProgram4 жыл бұрын
You're welcome!
@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
@golumclanstreams11293 жыл бұрын
i have the same problem
@deependranegi431511 ай бұрын
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)