我做了一些在线研究,发现了一个将 JSON 文件转换为 CSV 文件的脚本,我将其下载并存储在本地文件系统中json2csv.py
。该教程说我必须执行这个:
python.exe json2csv.py [input_file] [output_file]
我需要在哪里存储json2csv.py
以及 [input_file] 的格式是什么?我试着在 Python Shell(IDLE) 中输入这个:
python.exe C:\json2csv.py [c:\inputfile.json] [c:\output.csv]
但我收到语法错误。我是新手,真的需要帮助。
我在 Windows 7 上。