帮我把{ "fileName": "string", "fileType": "string", "fileUrl": "string", "fileBase64": "string" }封装到list中
时间: 2023-07-24 09:17:13 浏览: 118
文山电力:文山电力2020年年度报告.PDF
好的,以下是将该 JSON 对象封装到一个列表中的 Python 代码:
```python
data = [
{
"fileName": "example1.txt",
"fileType": "text/plain",
"fileUrl": "https://example.com/example1.txt",
"fileBase64": "dGVzdCBzdHJpbmc=" # 示例base64编码
},
{
"fileName": "example2.png",
"fileType": "image/png",
"fileUrl": "https://example.com/example2.png",
"fileBase64": "iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAgAElEQVR42u2dC3xU1dXH/3vv..." # 示例base64编码
}
]
```
你可以将上面的代码中的 `data` 替换为你需要封装的列表,然后将其传递给你的 API 接口或者其他程序使用。
阅读全文