“Python an JSON” Code-Antworten

Python json String zum Objekt

import json

x =  '{ "name":"John", "age":30, "city":"New York"}'
y = json.loads(x)

print(y["age"]) 
Anxious Ant

Python Objekt gegen JSON

jsonStr = json.dumps(myobject.__dict__)
tooblippe

Von JSON nach Python konvertieren

import json

# some JSON:
x =  '{ "name":"John", "age":30, "city":"New York"}'

# parse x:
y = json.loads(x)

# the result is a Python dictionary:
print(y["age"])
SAMER SAEID

Python an JSON

# a Python object (dict):
x = {
  "name": "John",
  "age": 30,
  "city": "New York"
}

# convert into JSON:
y = json.dumps(x)
Dead Dolphin

JSON decodieren PY

>>> import json
>>> json.loads('["foo", {"bar":["baz", null, 1.0, 2]}]')
['foo', {'bar': ['baz', None, 1.0, 2]}]
>>> json.loads('"\\"foo\\bar"')
'"foo\x08ar'
>>> from io import StringIO
>>> io = StringIO('["streaming API"]')
>>> json.load(io)
['streaming API']
Difficult Dormouse

Ähnliche Antworten wie “Python an JSON”

Fragen ähnlich wie “Python an JSON”

Weitere verwandte Antworten zu “Python an JSON” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen