Which is easier to parse .json or .csv files? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 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 🙏💗

13th Feb 2020, 9:10 PM
AGirlHasNoName
AGirlHasNoName - avatar
2 Answers
+ 3
I would use json first then convert to csv
13th Feb 2020, 9:29 PM
BroFar
BroFar - avatar
+ 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
13th Feb 2020, 9:38 PM
Deepraj Baidya
Deepraj Baidya - avatar