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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T21:44:35+00:00 2026-06-07T21:44:35+00:00

I have a text file that I would like to restructure. The file contains

  • 0

I have a text file that I would like to restructure. The file contains features, a description of the features(tab delim, the number of descriptors will vary), and a list of people displaying that feature. It looks like this:

Feature1    detail1    detail2
Person1
Person2
Feature2    detail1    detail2    detail3
Person3

…and I would just like to restructure it so that there is one feature per row, with the persons tacked onto the line after the descriptors so it would look like this:

 Feature1    detail1    detail2    Person1    Person2
 Feature2    detail1    detail2    detail3    Person3

I would like to use a Python dictionary. My code which will read each Feature as a key and append the details as values, but I am having trouble adding the Persons as values. Can anyone help?

import re
import sys
import csv

def reformat(filename):
    mydict = dict()
    for line in filename:
        m = re.search("\AFeature",line[0])  
        if m:
            if str(line) in mydict:
                mydict[line].append(line[0])
            else:
                mydict[line[0]] = (line[1:-1])
    print(mydict)

thefilename = "path"
path_reader=csv.reader(open(thefilename), delimiter = "\t")
rv = reformat(path_reader)

edit: fixed code indentation

  • 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-07T21:44:38+00:00Added an answer on June 7, 2026 at 9:44 pm

    I only changed the if ... else part:

    def reformat(filename):
        mydict = dict()
        feature = ''
        for line in filename:
            m = re.search("\AFeature",line[0])  
            if m:
                feature = line[0]
                mydict[feature] = (line[1:-1])
            else:
                mydict[feature].append(line[0])
    print(mydict)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a text file I would like to read in that contains rows
I have a huge text file that I would like to split into multiple
I have text file with some stuff that i would like to put into
I have a fairly large text file that I would like to convert into
I have a text file filled with some numbers that I would like to
Hey, I have Arabic text in a txt file that I would like to
I have a text file that looks like this. I would like to extract
I have Text file that contains data separated with a comma , . How
I have a text file that contains a list of filenames, minus the extension,
I have a text file that looks a bit like: random text random text,

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.