“Obtenez JSON Key Value Python” Réponses codées

Comment obtenir la clé et la valeur de l'objet de tableau JSON dans Python

import json
with open("test.json") as jsonFile:
	data = json.load(jsonFile)
	jsonData = data["emp_details"]
	for x in jsonData:
		keys = x.keys()
		print(keys)
		values = x.values()
		print(values)
RB to the moon

Obtenez JSON Key Value Python

print(json_object_string)
Coding boy Hasya

Obtenez JSON Key Value Python

{"id":"20", "name":"Bob"}
Coding boy Hasya

Réponses similaires à “Obtenez JSON Key Value Python”

Questions similaires à “Obtenez JSON Key Value Python”

Plus de réponses similaires à “Obtenez JSON Key Value Python” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code