I have a file that contains the symbol table details.Its in the form of rows and columns.
I need to extract first and last column.
How can I do that?
feedback
|
|
csv module is the easier way. You can use any separator with this code:
| |||||||
|
feedback
|
|
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 | |||||
feedback
|
|
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:
| |||||||
feedback
|