This commit is contained in:
zuowei1216
2025-12-30 14:46:22 +08:00
parent 6c73b31100
commit 12395d8eca
181 changed files with 1255 additions and 114 deletions

View File

@@ -0,0 +1,11 @@
import json
# 读取 JSON 文件
file_path = 'C:\\Users\\Administrator\\Desktop\\example.json'
with open(file_path, 'r') as file:
data = json.load(file)
# 处理数据
print("name:", data["name"])
print("resolution:", data["resolution"])
print("matchCount:", data["matchCount"])