“Python json String zum Objekt” 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 an JSON

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

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

Ähnliche Antworten wie “Python json String zum Objekt”

Fragen ähnlich wie “Python json String zum Objekt”

Weitere verwandte Antworten zu “Python json String zum Objekt” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen