import json

with open('tel.json','r') as datei:
    telefon = json.load(datei)
    for name in telefon.keys(): 
        print(name, telefon[name])
    
print("\n", telefon)