“Pour chaque JSON Python” Réponses codées

Pour chaque JSON Python

import json

def main():

    # create a simple JSON array
    jsonString = '{"key1":"value1","key2":"value2","key3":"value3"}'

    # change the JSON string into a JSON object
    jsonObject = json.loads(jsonString)

    # print the keys and values
    for key in jsonObject:
        value = jsonObject[key]
        print("The key and value are ({}) = ({})".format(key, value))

    pass

if __name__ == '__main__':
    main()
Kaeffa

Loop via JSON Array Python

for restaurant in data['restaurants']:
    print restaurant['restaurant']['name']
Cruel Cardinal

Réponses similaires à “Pour chaque JSON Python”

Questions similaires à “Pour chaque JSON Python”

Plus de réponses similaires à “Pour chaque JSON Python” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code