jsonarray example
Example 1: json example array
{
"name":"John",
"age":30,
"cars":[ "Ford", "BMW", "Fiat" ]
}
// Another exemple
{
"people": [
{
"website": "stackabuse.com",
"from": "Nebraska",
"name": "Scott"
},
{
"website": "google.com",
"from": "US",
"name": "Zuck"
}
]
}
Example 2: json arrays
{
"array": [{1,2,3,4,5,6}]
}
Example 3: csv.dictreader example
import csv
with open('names.csv', 'w') as csvfile:
fieldnames = ['first_name', 'last_name']
writer = csv.DictWriter(csvfile, fieldnames=fieldnames)
writer.writeheader()
writer.writerow({'first_name': 'Baked', 'last_name': 'Beans'})
writer.writerow({'first_name': 'Lovely', 'last_name': 'Spam'})
writer.writerow({'first_name': 'Wonderful', 'last_name': 'Spam'})
Example 4: hwo to access arary in json
console.log(dataJS);
console.log(dataJS[0].eee1);
console.log(dataJS[0].comments[0]);