Dada una string, cuente el número de vocales presentes en la string dada usando Conjuntos.
Requisito previo: Conjuntos en Python
# Python3 code to count vowel in # a string using set # Function to count vowel def vowel_count(str): # Initializing count variable to 0 count = 0 # Creating a set of vowels vowel = set("aeiouAEIOU") # Loop to traverse the alphabet # in the given string for alphabet in str: # If alphabet is present # in set vowel if alphabet in vowel: count = count + 1 print("No. of vowels :", count) # Driver code str = "GeeksforGeeks" # Function Call vowel_count(str)
Publicación traducida automáticamente
Artículo escrito por Sharad_Bhardwaj y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA