वर्णों की एक स्ट्रिंग को देखते हुए आइए विश्लेषण करें कि कितने वर्ण स्वर हैं।
सेट के साथ
हम पहले सभी व्यक्तिगत और अद्वितीय वर्णों का पता लगाते हैं और फिर परीक्षण करते हैं कि क्या वे स्वरों का प्रतिनिधित्व करने वाली स्ट्रिंग में मौजूद हैं।
उदाहरण
stringA = "Tutorialspoint is best" print("Given String: \n",stringA) vowels = "AaEeIiOoUu" # Get vowels res = set([each for each in stringA if each in vowels]) print("The vlowels present in the string:\n ",res)
आउटपुट
उपरोक्त कोड को चलाने से हमें निम्नलिखित परिणाम मिलते हैं -
Given String: Tutorialspoint is best The vlowels present in the string: {'e', 'i', 'a', 'o', 'u'}
फ्रॉमकी के साथ
यह फ़ंक्शन स्वरों को एक शब्दकोश के रूप में मानकर स्ट्रिंग के रूप में निकालने में सक्षम बनाता है।
उदाहरण
stringA = "Tutorialspoint is best" #ignore cases stringA = stringA.casefold() vowels = "aeiou" def vowel_count(string, vowels): # Take dictionary key as a vowel count = {}.fromkeys(vowels, 0) # To count the vowels for v in string: if v in count: # Increasing count for each occurence count[v] += 1 return count print("Given String: \n", stringA) print ("The count of vlowels in the string:\n ",vowel_count(stringA, vowels))
आउटपुट
उपरोक्त कोड को चलाने से हमें निम्नलिखित परिणाम मिलते हैं -
Given String: tutorialspoint is best The count of vlowels in the string: {'a': 1, 'e': 1, 'i': 3, 'o': 2, 'u': 1}