使用python读取文件中的json文件,然后返回与json文件名同名的图片
时间: 2023-02-22 14:58:33 浏览: 93
python读取json文件
5星 · 资源好评率100%
读取 JSON 文件的方法如下:
1. 打开文件:
```
with open(<文件名>, "r") as file:
data = json.load(file)
```
2. 解析 JSON 数据:
```
import json
with open(<文件名>, "r") as file:
data = json.load(file)
# 在这里可以对数据进行处理
```
回答图片文件名与 JSON 文件名相同,可以通过替换文件名后缀来得到图片文件名:
```
img_file = <文件名>.replace(".json", ".jpg")
```
因此,读取并返回与 JSON 文件名同名的图片的完整代码如下:
```
import json
def read_json_and_return_img(file_name):
with open(file_name, "r") as file:
data = json.load(file)
img_file = file_name.replace(".json", ".jpg")
return img_file
```
阅读全文