Search code examples
csvdata-manipulationtxt

How to convert a single column csv file with 660 rows & no header into a 660 element tuple/series


Here is what I haveenter image description here

I would like to be able to convert this into something that looks like this instead: (09J,14A,18A,1V6,22S,2I0,2R4,32S,38S,...)

How should I go about accomplishing this simple task?

I also have it in a simple txt file as well, maybe it would be easier to do this from there, so here is what that looks like: enter image description here


Solution

  • this may work using python. enter image description here

    i am reading a text file not a csv, not sure if that works with big data tho.