This repository was archived by the owner on May 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
This repository was archived by the owner on May 25, 2022. It is now read-only.
Write a program to convert JSON file to csv #6
Closed
@chavarera
Description
Problem statement
Write a program to convert JSON file to csv
input.json
[
{
"Name": "Akash",
"age": 26,
"birthyear": "1994"
},
{
"Name": "Abhay",
"age": 34,
"birthyear": "1986"
}
]
Output.csv
Name,age,birthyear
Akash,26,1994
Abhay,34,1986