vote up -6 vote down star

I have a file which contains symbol table details.Its in the form of rows and columns.

I need to extract 1st and last columns.

How to extract the columns ???

flag

27% accept rate
You're going to need to describe the format of your "symbol table" file in more detail. Is it text? Are the "rows" terminated by line breaks (\n)? How are the columns separated? Fixed width? Commas? Semicolons? Tabs? – bendin Jan 27 at 6:05
columns are seperated with space – rejinacm Jan 27 at 9:32
Please edit the question to add new facts, @rejinacm. – S.Lott Jan 27 at 10:35
You should edit your question and put a little sample of the file in order to let we know how the file really is. It's too vague. – Andrea Ambu Jan 27 at 10:57

3 Answers

vote up 3 vote down

csv module is the easier way. You can use any separator with this code:

import csv

def import_text(filename, separator):
    for line in csv.reader(open(filename), delimiter=separator, 
                           skipinitialspace=True):
        if line:
            yield line

for data in import_text('somefile.txt', '/'):
    print (data)
link|flag
+1 for using a standard module – davidavr Jan 27 at 12:40
What does "if line" do? Skip empty lines? – pufferfish Jun 19 at 9:08
pufferfish: yes. – nosklo Jun 19 at 11:17
vote up 2 vote down

What type of delimiter are you using? That is, what separates your columns?

I'll assume you're using comma delimiters, like so:

col1,  col2,  col3
col11, col12, col13
col21, col22, col23
col31, col32, col33

The following code will parse it and print the first and last columns of each row:

# open file to read
f = file('db.txt', 'r')

# iterate over the lines in the file
for line in f:
    # split the line into a list of column values
    columns = line.split(',')
    # clean any whitespace off the items
    columns = [col.strip() for col in columns]

    # ensure the column has at least one value before printing
    if columns:
    	print "first", columns[0]  # print the first column
    	print "last", columns[-1] # print the last column
link|flag
For csv files, you should be using the csv module. – Aaron Gallagher Jan 27 at 6:17
@Aaron, the author didn't specify that he's using CSV, so Soviut presented a good solution because it shows what is going on and therefore can be modified more easily. – Evan Fosmark Jan 27 at 7:47
@Soviut: Using "," is confusing, since CSV is well-defined and isn't this. Using " " is a better choice because it doesn't overlap CSV. – S.Lott Jan 27 at 10:36
vote up 2 vote down

The most convenient way of parsing tables written to text files is using the csv module. It supports any delimiter and is more convenient to use than manual line-by-line parsing. Example:

import csv

def get_first_and_last_column(filename, separator):
    with file(filename, 'rb') as file_obj:
        for line in csv.reader(file_obj, 
              delimiter=separator,    # Your custom delimiter.
              skipinitialspace=True): # Strips whitespace after delimiter.
            if line: # Make sure there's at least one entry.
                yield line[0], line[-1]

if __name__ == '__main__':
    for pair in get_first_and_last_column(r'c:\temp\file.txt', ';'):
        print pair

Now, if you give it a file like this:

Edgar; Alan; Poe
John; Smith

Lots;   of;   whitespace; here

It will produce the following output:

('Edgar', 'Poe')
('John', 'Smith')
('Lots', 'here')

EDIT: custom parameters to csv.reader can be passed as keyword arguments, too (thanks, nosklo!).

link|flag
It is needlessy complex - If you're doing something simple, you don't have to create a new dialect, just pass the params: csv.reader(file_obj, delimiter='|', skipinitialspace=True). – nosklo Jan 27 at 10:29
Cool, thanks, I didn't know that :-) – DzinX Jan 27 at 12:44

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.