8 lines
233 B
Python
8 lines
233 B
Python
import json
|
|
with open('peiwenyunfu_v2.json', 'r', encoding='utf-8') as f:
|
|
data = json.load(f)
|
|
|
|
for k in ['𩅰', '桵', '离', '梩']:
|
|
print(f"Rhyme: {k}")
|
|
print(json.dumps(data.get(k, {}), ensure_ascii=False, indent=2))
|