इस ट्यूटोरियल में, हम एक प्रोग्राम लिखने जा रहे हैं जो यह गिनता है कि स्ट्रिंग में कोई शब्द कितनी बार आता है। आपको शब्द और एक स्ट्रिंग दी गई है, हमें स्ट्रिंग में शब्द की आवृत्ति की गणना करनी है।
मान लीजिए हमारे पास एक स्ट्रिंग है मैं एक प्रोग्रामर हूं। मैं एक छात्र हूं। और शब्द है . हम जो प्रोग्राम लिखने जा रहे हैं वह एक नंबर लौटाएगा 2 जैसा कि शब्द होता है स्ट्रिंग में दो बार।
आइए अपने लक्ष्य को प्राप्त करने के लिए नीचे दिए गए चरणों का पालन करें।
एल्गोरिदम
1. Initialize the string and the word as two variables. 2. Split the string at spaces using the split() method. We will get a list of words. 3. Initialize a variable count to zero. 4. Iterate over the list. 4.1. Check whether the word in the list is equal to the given the word or not. 4.1.1. Increment the count if the two words are matched. 5. Print the count.
पहले प्रोग्राम के लिए कोड स्वयं लिखने का प्रयास करें। आइए कोड देखें।
उदाहरण
## initializing the string and the word string = "I am programmer. I am student." word = "am" ## splitting the string at space words = string.split() ## initializing count variable to 0 count = 0 ## iterating over the list for w in words: ## checking the match of the words if w == word: ## incrementint count on match count += 1 ## printing the count print(count)
आउटपुट
यदि आप उपरोक्त कार्यक्रम चलाते हैं, तो आपको निम्नलिखित परिणाम प्राप्त होंगे।
2
निष्कर्ष
यदि आपको कार्यक्रम के संबंध में कोई संदेह है, तो उन्हें टिप्पणी अनुभाग में पूछें।