+ 2
Which is easier to parse .json or .csv files?
As I've searched the information, it's better to use JSON format to parse huge data than CSV, but visually, it's kind of good readable when I'm using .csv files. What do you think, why is so that many people offer json format? And in case i use it, how can I make it more readable? Thanks in advance đđ
2 Answers
+ 3
I would use json first then convert to csv
+ 3
Both are easy to parse using python. Use pandas library to convert csv files or json to dataframe
Basically u can load files and convert csv to json or json to csv, csv to numpy arrays and many more