Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7869047
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T01:11:28+00:00 2026-06-03T01:11:28+00:00

I need your help please. I have a text file contains lines of lists,

  • 0

I need your help please.

I have a text file contains lines of lists, each line represent a list of items. I need to extract all items that have a frequency of >=2 and output them into another file.Here an example.

['COLG-CAD-406', 'CSAL-CAD-030', 'COLG-CAD-533', 'COLG-CAD-188']

['COLG-CAD-188']

['CSAL-CAD-030']

['EPHAG-JAE-004']

['COLG-CAD-188', 'CEM-SEV-004']

['COL-CAD-188', 'COLG-CAD-406']

the output should be

['COLG-CAD-406'], 2

['CSAL-CAD-030'], 2

['COLG-CAD-188'], 3

and so on till the end of the file

Thank you very much for your help in advance.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T01:11:30+00:00Added an answer on June 3, 2026 at 1:11 am

    This is a complete script that does exactly what you want, using regex:

    from collections import defaultdict
    import re
    
    myarch = 'C:/code/test5.txt'   #this is your archive
    mydict = defaultdict(int)
    
    with open(myarch) as f:
        for line in f:
            codes = re.findall("\'(\S*)\'", line)
            for key in codes:
                mydict[key] +=1
    
    out = []
    for key, value in mydict.iteritems():
        if value > 1:
            text = "['%s'], %s" % (key, value)
            out.append(text)
    
    #save to a file
    with open('C:/code/fileout.txt', 'w') as fo:
        fo.write('\n'.join(out))
    

    This can be simplified as:

    from collections import defaultdict
    import re
    
    myarch = 'C:/code/test5.txt'
    mydict = defaultdict(int)
    
    with open(myarch) as f:
        for line in f:
            for key in re.findall("\'(\S*)\'", line):
                mydict[key] +=1
    
    out = ["['%s'], %s" % (key, value) for key, value in mydict.iteritems() if value > 1]
    
    #save to a file
    with open('C:/code/fileout.txt', 'w') as fo:
        fo.write('\n'.join(out))
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need your help please. I have this xml file which I need to
Please I need your help with grabbing rows from a table and dynamic text
Please, I need your help. I have a Follow button. When the button is
Please I need your help with my script. I'm trying to insert values into
Please i need your help with how to include INDEXES in my tables, i've
I need your help. I tried to play an audio file stored in Assets
I need your help. Say I have a code inside a for statement similar
i need some help here. I have a dialog box that contains an iFrame
Can some one help me to read a file line by line, I have
I need your help in my code I have problem when new div inserted

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.