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
#1
ALL:
I have an ASCII text file that contains First and Last names of a phone list.
Each full name is on a newline.
I need a new list generated that is sorted by the number of occurrences these names appear in the text file.

for example:
the file names.txt contains:
bill smith
joe williams
bill smith
jane doe
joe williams
bill smith

the final list should look like this:
bill smith (3)
joe williams (2)
jane doe (1)

All the examples I see online break the text into a single letter list, which I DON'T WANT!

Thanks in advance for your help.
Reply


Messages In This Thread
Count & Sort occurrences of text in a file - by oradba4u - Sep-06-2020, 01:03 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,287 Dec-15-2022, 04:32 PM
Last Post: Larz60+
  Row Count and coloumn count Yegor123 4 1,519 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,714 Sep-03-2022, 07:32 AM
Last Post: Pedroski55
Photo a.sort() == b.sort() all the time 3lnyn0 1 1,450 Apr-19-2022, 06:50 PM
Last Post: Gribouillis
  Modify values in XML file by data from text file (without parsing) Paqqno 2 1,904 Apr-13-2022, 06:02 AM
Last Post: Paqqno
  How to perform DESC table sort on dates stored as TEXT type. hammer 7 2,498 Mar-15-2022, 01:10 PM
Last Post: hammer
  Converted Pipe Delimited text file to CSV file atomxkai 4 7,433 Feb-11-2022, 12:38 AM
Last Post: atomxkai
  all i want to do is count the lines in each file Skaperen 13 5,327 May-23-2021, 11:24 PM
Last Post: Skaperen
  Sort data from JSON file Dummy_in_programming 2 2,576 Jan-04-2021, 06:17 PM
Last Post: deanhystad
  [split] How to convert the CSV text file into a txt file Pinto94 5 3,592 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