I am trying to read from a tab file from a specific row and I want to process the information line by line in order to create a list with those lines. I read the documentation, but I couldn`t find something useful.
To be more clear I will give an example: Given the file:
id conversation
- Hello, How are you
- I am fine, thanks for asking
- I am glad to hear that
I want to read just conversation row and create the list like this:
list=['Hello,How are you', 'I am fine, thanks for asking', 'I am glad to hear that']