I have a large csv file containing data like:
2018-09, 100, A, 2018-10, 50, M, 2018-11, 69, H,....
and so on. (continuous stream without separate rows)
I would want to convert it into dataframe, which would look something like
Col1 Col2 Col3
2018-09 100 A
2018-10 50 M
2018-11 69 H
This is a simplified version of the actual data. Please advice what would be the best way to approach it.
Edit: To clarify, my csv file doesn't have separate lines for each row. All the data is on one row.