Python Forum
Count & Sort occurrences of text in a file
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Count & Sort occurrences of text in a file
#7
(Sep-06-2020, 01:54 PM)ndc85430 Wrote: That's GREAT, but how can I sort the final list according to the number of occurrences?
you can use most_common() method of Counter:
Quote:Return a list of the n most common elements and their counts from the most common to the least. If n is omitted or None, most_common() returns all elements in the counter. Elements with equal counts are ordered in the order first encountered:

from collections import Counter
  
with open('dupes.csv', "r") as f:
    for name, name_count in Counter(f).most_common():
        print(f'{name.strip()}:{name_count}')
If you can't explain it to a six year old, you don't understand it yourself, Albert Einstein
How to Ask Questions The Smart Way: link and another link
Create MCV example
Debug small programs

Reply


Messages In This Thread
RE: Count & Sort occurrences of text in a file - by buran - Sep-06-2020, 02:00 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
Thumbs Up Need to compare the Excel file name with a directory text file. veeran1991 1 1,290 Dec-15-2022, 04:32 PM
Last Post: Larz60+
  Row Count and coloumn count Yegor123 4 1,523 Oct-18-2022, 03:52 AM
Last Post: Yegor123
  How to sort .csv file test log which item first fail and paint color SamLiu 24 5,740 Sep-03-2022, 07:32 AM
Last Post: Pedroski55
Photo a.sort() == b.sort() all the time 3lnyn0 1 1,455 Apr-19-2022, 06:50 PM
Last Post: Gribouillis
  Modify values in XML file by data from text file (without parsing) Paqqno 2 1,910 Apr-13-2022, 06:02 AM
Last Post: Paqqno
  How to perform DESC table sort on dates stored as TEXT type. hammer 7 2,507 Mar-15-2022, 01:10 PM
Last Post: hammer
  Converted Pipe Delimited text file to CSV file atomxkai 4 7,445 Feb-11-2022, 12:38 AM
Last Post: atomxkai
  all i want to do is count the lines in each file Skaperen 13 5,335 May-23-2021, 11:24 PM
Last Post: Skaperen
  Sort data from JSON file Dummy_in_programming 2 2,583 Jan-04-2021, 06:17 PM
Last Post: deanhystad
  [split] How to convert the CSV text file into a txt file Pinto94 5 3,595 Dec-23-2020, 08:04 AM
Last Post: ndc85430

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020