5 lines
191 B
Python
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) |