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 6067055
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T09:34:01+00:00 2026-05-23T09:34:01+00:00

I have a textfile that looks like this: Thomas Edgarson, Berliner Str 4, 13359

  • 0

I have a textfile that looks like this:

Thomas Edgarson, Berliner Str 4, 13359 Berlin
Madeleine Jones, Müller Str 5, 15992 Karlsruhe
etc...

It’s always two words, followed by a comma, then two words and number, comma, area code and city. There are no exceptions.

I used

f=open("C:\\Users\\xxxxxx\\Desktop\\useradresses.txt", "r")
text=f.readlines()
f.close()

So now I have a list of all the columns. How can I now search for the area codes in these strings. I need to create a dictionary that looks like this

{'13359':[('Neuss','Wolfgang'),('Juhnke','Harald')]}

Believe me, I’ve searched, but couldn’t find useful information. To me, the whole idea of searching for something like an arbitray area code in a string is new and I haven’t come across it so far.

I would be happy if you could give me some pointers as to where I should look for tutorials or give me an idea where to start.

  • 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-05-23T09:34:02+00:00Added an answer on May 23, 2026 at 9:34 am
    dic = {}
    with open('filename') as file:
        for name, addr, zcode in (i.split(',') for i in file if i.rstrip()):
            dic.setdefault(zcode.split()[0], []).append(name.split())
    

    Further explanation as Sjoerd asked:

    Using a generator expression to break each line in 3 variables: name, addr and zcode. Then I split zcode in the desired number and used it as a dictionary key.

    As the dict may not have the key yet, I use the setdefault method and that sets the key with a empty list before appending the splitted name.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an XML spec that looks like this: <Root> <Directory Name=SomeName> <TextFile Name=ExampleDocument.txt>This
I have a bunch of textfile that looks like this: His doctor attributed this
I have a text file that looks like this: value1 value2 value3 There are
I have a text file that looks like this: 1,Smith, 249.24, 6/10/2010 2,Johnson, 1332.23,
So I currently have this code to read an accounts.txt file that looks like
I have a sample xml file that looks like this: <Books> <Category Genre=Fiction BookName=book_name
I have a text file that looks like this: 0000000000000000 0000000000000000 FFFFFFFFFFFFFFFF FFFFFFFFFFFFFFFF 3000000000000000
I have a text file that looks like this: [22/Nov/2011 12:57:58] GET /media/js/jquery-1.4.3.min.js HTTP/1.1
I have a text file (bowtie alignment file) that looks like this: read_1 +
So I have a a text file that looks something like this: public >ret

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.