“Schreiben Sie JSON Pythonb” Code-Antworten

Schreiben Sie JSON Pythonb

import json

with open('data.txt') as json_file:
    data = json.load(json_file)
    for p in data['people']:
        print('Name: ' + p['name'])
        print('Website: ' + p['website'])
        print('From: ' + p['from'])
        print('')
Nyn

Schreiben Sie JSON Pythonb

>>> import json
>>> data = {'item': 'Beer', 'cost':'£4.00'}
>>> jstr = json.dumps(data, indent=4)
>>> print(jstr)
{
    "item": "Beer",
    "cost": "\u00a34.00"
}
Nyn

Ähnliche Antworten wie “Schreiben Sie JSON Pythonb”

Fragen ähnlich wie “Schreiben Sie JSON Pythonb”

Weitere verwandte Antworten zu “Schreiben Sie JSON Pythonb” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen