“CSV ke JSON” Kode Jawaban

JSON ke CSV

# call csvkit (which is a Python tool) to convert json to csv:
# https://csvkit.readthedocs.io/en/latest/

in2csv data.json > data.csv
Troubled Tapir

CSV ke JSON

python -c "import csv,json;print json.dumps(list(csv.reader(open('csv_file.csv'))))"
Thankful Thrush

Konversi JSON ke CSV

import json
if __name__ == '__main__':
    try:
        with open('input.json', 'r') as f:
            data = json.loads(f.read())

        output = ','.join([*data[0]])
        for obj in data:
            output += f'\n{obj["Name"]},{obj["age"]},{obj["birthyear"]}'
            
        with open('output.csv', 'w') as f:
            f.write(output)
    except Exception as ex:
        print(f'Error: {str(ex)}')
Harendra

Jawaban yang mirip dengan “CSV ke JSON”

Pertanyaan yang mirip dengan “CSV ke JSON”

Lebih banyak jawaban terkait untuk “CSV ke JSON” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya