Python 遍历读取 文件夹里的json文件内容
时间: 2023-02-11 08:10:16 浏览: 117
遍历JSON文件内容
可以使用 Python 的 os 模块和 json 模块来遍历读取文件夹里的 json 文件内容。
示例代码如下:
```
import os
import json
folder_path = 'path/to/folder'
for file_name in os.listdir(folder_path):
if file_name.endswith('.json'):
file_path = os.path.join(folder_path, file_name)
with open(file_path) as json_file:
data = json.load(json_file)
# Do something with the data
print(data)
```
这段代码会读取文件夹里所有以 .json 结尾的文件,读取后把文件内容以变量形式存在 data 中,可以在这里进行自己的操作。
阅读全文