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

एक टपल में एक तत्व की घटनाओं की गणना करने के लिए पायथन कार्यक्रम

यहां एक उपयोगकर्ता इनपुट टपल दिया गया है, हमारा कार्य किसी दिए गए तत्व की घटनाओं को टपल में गिनना है।

उदाहरण

Input : A = [10, 20, 30, 40, 10, 100, 80, 10]
        X = 10
Output : 3

एल्गोरिदम

countoccur(A,x)
/* A is an array and x is the element to count the number of occurrences */
Step 1: First we use one counter variable which is count the same element.
Step 2: Then traverse the tuple.
Step 3: Then check x with every element of the tuple.
Step 4: If the element is matched with the x, then counter is incremented by 1.
Step 5: Return counter variable.

उदाहरण कोड

# Program to count occurrences of an element in a tuple 

def countoccur(A, x): 
   c = 0
   for i in A: 
      if (i == x): 
         c = c + 1
   return c 

# Driver Code
A=list()
n1=int(input("Enter the size of the List ::"))
print("Enter the Element of List ::")
for i in range(int(n1)):
   k=int(input(""))
   A.append(k)
n=int(input("Enter an element to count number of occurrences ::"))       
print("Number of Occurrences of ",n,"is",countoccur(A, n)) 

आउटपुट

Enter the size of the List ::6
Enter the Element of List ::
12
23
45
12
89
12
Enter an element to count number of occurrences :12
Number of Occurrences of 12 is 3

  1. एक सरणी में व्युत्क्रमों की गणना करने के लिए पायथन कार्यक्रम

    इस लेख में, हम नीचे दिए गए समस्या कथन के समाधान के बारे में जानेंगे। समस्या कथन - हमें एक सूची दी गई है, हमें आवश्यक व्युत्क्रम की गणना करने और उसे प्रदर्शित करने की आवश्यकता है। सरणी को क्रमबद्ध करने के लिए कितने चरणों की आवश्यकता है, इसकी गणना करके उलटा गणना प्राप्त की जाती है। आइए अब नीचे दिए

  1. पायथन प्रोग्राम में रैखिक खोज

    इस लेख में, हम लीनियर सर्च और पायथन 3.x में इसके कार्यान्वयन के बारे में जानेंगे। या पहले। एल्गोरिदम दिए गए एआर के सबसे बाएं तत्व से शुरू करें [] और एक-एक करके तत्व एक्स की तुलना एआर के प्रत्येक तत्व के साथ करें [] यदि x किसी भी तत्व से मेल खाता है, तो अनुक्रमणिका मान लौटाएँ। अगर x arr[] म

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

    यहां उपयोगकर्ता ने एक स्ट्रिंग दी और उपयोगकर्ता ने घटनाओं की संख्या गिनने के लिए शब्द भी दिया। हमारा काम घटनाओं की संख्या गिनना और उसे प्रिंट करना है। उदाहरण programming Output:: 2 एल्गोरिदम wordoccurences(n,p) /* n is input string and p is the word to count occurrence */ Step 1: split the string