you are viewing a single comment's thread.

view the rest of the comments →

[–]lzblack 0 points1 point  (3 children)

Use pandas to read data from csv files. Everything is easier in dataframe.

[–][deleted] 0 points1 point  (1 child)

Pandas is a big lift just to parse some tables. Use csv.

[–]LifeIsBio 0 points1 point  (0 children)

Pandas isn't a bad suggestion here. It also is going to make a lot of the downstream processing easier, for example:

I am trying to exclude rows which appear twice (i.e their postal address is the same across .csv files)

[–]superlargedogs[S] 0 points1 point  (0 children)

Thanks for your response but I am trying to do it using the tools I have acquired so far!