Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have 79 files from the folder that I want to load these and bring them into Python. I plan on converting these to csv files. Is it better to append all the json files into 1 file then convert to CSV in one large file? Or convert each json individually into a csv file then append the csv file together?

This is what I have so far. What am I missing?

import os 
file = r'C:UsersdataCDER4.json'

def openfile(file):
    with open(file, 'r') as f:
        cdmfile = json.load(f)
    return cdmfile

cvmfile = openfile(r'C:UsersdataCDER4.json')

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.4k views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...