In diesem Artikel erfahren Sie, wie Sie die Worthäufigkeit in Python als Prozentsatz ermitteln.
Angenommen, wir haben eine Liste von String-Eingaben erhalten. Jetzt ermitteln wir den Prozentsatz jedes Wortes in der angegebenen Liste der Eingabezeichenfolgen.
(Occurrence of X word / Total words) * 100
Verwenden Sie die Funktionen sum(), Counter(), join() und split()
Verwenden Sie die Funktionen join(), split() und count()
Verwenden Sie die Funktion countOf() des Operatormoduls.
join() ist eine String-Funktion in Python, die verwendet wird, um durch String-Trennzeichen getrennte Sequenzelemente zu einem String zu verbinden.
Die FunktionCounter() ist eine Unterklasse, die die Anzahl der hashbaren Objekte zählt. Beim Aufruf/Aufruf wird implizit eine Hash-Tabelle iterierbarer Objekte erstellt.
Hier sind die Algorithmen/Schritte zum Ausführen der erforderlichen Aufgabe:
Verwenden Sie das Schlüsselwort import, um die Counter-Funktion aus dem Collection-Modul zu importieren.
Erstellen Sie eine Variable zum Speichern der Zeichenfolge „Eingabeliste“ und drucken Sie die Liste aus.
, um alle String-Elemente der Eingabeliste zu verbinden.
in eine Liste von Wörtern auf (teilen Sie die Zeichenfolge in eine Liste auf. Sie können das Trennzeichen definieren; das Standardtrennzeichen ist ein beliebiges Leerzeichen) und erhalten Sie die Wörter mit der Funktion Counter( ) Funktionshäufigkeiten als Schlüssel-Wert-Paare
, um alle Werte (Häufigkeit/Anzahl) vom Zähler abzurufen, und verwenden Sie die Funktion sum(), um deren Summe abzurufen (gibt die Summe aller Elemente im Iterable zurück).
, um den Prozentsatz jedes Wortes in den oben genannten Zählerwörtern zu ermitteln (gibt ein Ansichtsobjekt zurück, d. h. es enthält die Schlüssel-Wert-Paare des Wörterbuchs als Tupel in einer Liste).
Die chinesische Übersetzung von
# importing a Counter function from the collections module from collections import Counter # input list of strings inputList = ["hello tutorialspoint", "python codes", "tutorialspoint for python", "see python codes tutorialspoint"] print("Input list:\n", inputList) # Joining all the string elements of the list using the join() function join_string = " ".join(i for i in inputList) # splitting the joined string into a list of words and getting the # frequency of words as key-value pairs using Counter() function counter_words = Counter(join_string.split()) # getting all the values(frequencies/counts) from counter and # finding the total sum of them total_sum = sum(counter_words.values()) # getting the percentage of each word from the above counter words res_percentage = {key: value / total_sum for key, value in counter_words.items()} # printing the percentage of each word from the input list print("Percentage of each word from the input list:\n", res_percentage)
Ausgabe
Input list: ['hello tutorialspoint', 'python codes', 'tutorialspoint for python', 'see python codes tutorialspoint'] Percentage of each word from the input list: {'hello': 0.09090909090909091, 'tutorialspoint': 0.2727272727272727, 'python': 0.2727272727272727, 'codes': 0.18181818181818182, 'for': 0.09090909090909091, 'see': 0.09090909090909091}
Methode 2: Verwenden Sie die Funktionen join(), split() und count()
, um die Wortliste zu durchlaufen.
, um zu überprüfen, ob das aktuelle Element nicht im Schlüssel des Wörterbuchs enthalten ist. Verwenden Sie dazu die Funktion keys().
Die chinesische Übersetzung von
# input list of strings inputList = ["hello tutorialspoint", "python codes", "tutorialspoint for python", "see python codes tutorialspoint"] # joining all the elements of the list using join() join_string = " ".join(i for i in inputList) # splitting the joined string into a list of words listOfWords = join_string.split() # Creating an empty dictionary for storing the resultant percentages resDict = dict() # traversing through the list of words for item in listOfWords: # checking whether the current element is not in the keys of a dictionary if item not in resDict.keys(): # getting the percentage of a current word if the condition is true resDict[item] = listOfWords.count(item)/len(listOfWords) # printing the percentage of each word from the input list print("Percentage of each word from the input list:\n", resDict)
Ausgabe
Percentage of each word from the input list: {'hello': 0.09090909090909091, 'tutorialspoint': 0.2727272727272727, 'python': 0.2727272727272727, 'codes': 0.18181818181818182, 'for': 0.09090909090909091, 'see': 0.09090909090909091}
Methode 3: Verwenden Sie die Funktion countOf() des Operatormoduls
Die chinesische Übersetzung vonimport operator as op # input list of strings inputList = ["hello tutorialspoint", "python codes", "tutorialspoint for python", "see python codes tutorialspoint"] # joining all the elements of list using join() join_string = " ".join(i for i in inputList) # splitting the joined string into list of words listOfWords = join_string.split() resDict = dict() for item in listOfWords: # checking whether the current element is not in the keys of dictionary if item not in resDict.keys(): resDict[item] = op.countOf(listOfWords, item)/len(listOfWords) print("Percentage of each word from the input list:\n", resDict)
Ausgabe
Percentage of each word from the input list: {'hello': 0.09090909090909091, 'tutorialspoint': 0.2727272727272727, 'python': 0.2727272727272727, 'codes': 0.18181818181818182, 'for': 0.09090909090909091, 'see': 0.09090909090909091}
Fazit
Das obige ist der detaillierte Inhalt vonPython-Programm zum Ermitteln des Prozentsatzes der Worthäufigkeit. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!