I am trying to print an specific key from a JSON file without success.
.json file is:
{
    "testing": [
        {
            "_name": "teste",
            "_profile_telphone": "212331233",
            "_age": "21"
        }
    ]
}
the function I'm using is:
def load(self):
    filename = self.profile_entry.get()
    if filename == "":
        msg = "Insert a profile name"
        messagebox.showinfo("Profile name is empty", msg)
        self.profile_entry.focus()
    else:
        with open('profile_'+filename+'.json', 'r') as outfile:
            data = json.load(outfile)
            print(data[filename])
            outfile.close()
with print(data[filename]) I can print entire
{
            "_name": "teste",
            "_profile_telphone": "212331233",
            "_age": "21"
        }
But how can I print only name or age for example?
 
    