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 ???
|
|
|||||||||
|
|
|
csv module is the easier way. You can use any separator with this code:
|
||||||
|
|
|
What type of delimiter are you using? That is, what separates your columns? I'll assume you're using comma delimiters, like so:
The following code will parse it and print the first and last columns of each row:
|
||||||
|
|
|
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:
Now, if you give it a file like this:
It will produce the following output:
EDIT: custom parameters to |
|||