Files
YunNanProject/Tools/T1_ReadAreaDict.py
2025-09-10 09:47:18 +08:00

5 lines
191 B
Python

# 读取 Dict 目录下 ChinaCitys2025.json
import json
with open(r'D:\dsWork\YunNanProject\Dict\ChinaCitys2025.json', 'r', encoding='utf-8') as f:
data = json.load(f)
print(data)