1

I want to manipulate CSV files with Python and I was using NumPy, what I want to do is 3 columns, with an undetermined number of rows, and I want to be able to remove, add and edit every value, this is my questions:
Should I use NumPy? (if yes, please tell me how, I've been searching on google and I couldn't find anything of help! If not, please tell me what I should use,)

Comments
  • 2
    To add to @RocketSurgeon answer. Use csv.DictReader if you know What the header values (first row in csv) are and if you need to conveniently map to specific cells by column name. It’s give you a nice dictionary to work with.
  • 2
    Maybe try Pandas
  • 0
    @fizzbuzzCoder I'll try Pandas, thank you
Add Comment