JSON Dosyasını Okuma ve Sözlük (dict) Veri Tipine Çevirme

import json

with open('dosya_yolu/kisi.json') as f:
  veri = json.load(f)

print(veri)