Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> Python

पायथन में अनुक्रम में दूसरा सबसे दोहराया जाने वाला शब्द?

स्ट्रिंग दी गई है, हमारा काम दूसरे दोहराए गए शब्द का पता लगाना है। यहां हम शब्दकोश बनाने के लिए काउंटर (पुनरावृत्ति) करते हैं जिसमें कुंजी के रूप में शब्द और मूल्य के रूप में इसकी आवृत्ति होती है।

एल्गोरिदम

Step 1: Create user define list.
Step 2: Then convert list into a dictionary.
Step 2: Next get the values and sort them in descending order.
Step 3: Then the second element is the second largest value.
Step 4: Next again traverse whole dictionary and display key whose value is equal to second largest element.

उदाहरण कोड

# To print Second most repeated word in a sequence in Python from collections 
import Counter
defsecondrepeatation(A):
# Convert list into dictionary
con = Counter(A)
res = sorted(con.values(), reverse=True)
maxi = res[1]
for (key, val) in con.items():
   if val == maxi:
       print("Second most repeated word ::>",key)
       return
# Driver program
if __name__ == "__main__":
   A=list()			#create user defined list
n=int(input("Enter the size of the List ::"))
print("Enter the word ::")
for i in range(int(n)):
   k=input("")
   A.append(k)
secondrepeatation(A)		# call function

आउटपुट

Enter the size of the List ::4
Enter the word ::
aa
bb
aa
cc
Second most repeated word ::> bb

  1. एंड्रॉइड में अनुक्रम में दूसरी सबसे दोहराई जाने वाली स्ट्रिंग कैसे खोजें?

    यह उदाहरण दर्शाता है कि android में अनुक्रम में दूसरी सबसे अधिक बार-बार दोहराई जाने वाली स्ट्रिंग कैसे खोजें। चरण 1 - एंड्रॉइड स्टूडियो में एक नया प्रोजेक्ट बनाएं, फाइल ⇒ न्यू प्रोजेक्ट पर जाएं और एक नया प्रोजेक्ट बनाने के लिए सभी आवश्यक विवरण भरें। चरण 2 - निम्न कोड को res/layout/activity_main.xm

  1. पायथन में एक स्ट्रिंग में पहला दोहराया शब्द खोजें?

    एक स्ट्रिंग दी गई है। हमारा काम दिए गए स्ट्रिंग में पहले दोहराए गए शब्द को ढूंढना है। इस समस्या को लागू करने के लिए हम पायथन संग्रह का उपयोग कर रहे हैं। संग्रह से, हम काउंटर () विधि प्राप्त कर सकते हैं। एल्गोरिदम Repeatedword(n) /* n is the string */ Step 1: first split given string separated by sp

  1. पायथन में एक सूची प्रिंट करें

    सूची तत्वों का एक क्रम है। अनुक्रम में कोई भी तत्व क्रम में अपनी स्थिति से पहुँचा जा सकता है। इंडेक्स 0 से शुरू होता है। इसलिए लिस्ट [2] इंडेक्स 2 पर एलिमेंट लौटाएगा, लिस्ट में तीसरा यानी 50।