JSON(JavaScript Object Notation) er et populært dataformat, der bruges til dataudveksling mellem applikationer. Python understøtter JSON-manipulation gennem json
modulet, så du kan konvertere mellem Python data og JSON-format.
Her er trinene til at arbejde med JSON i Python:
Konverter Python data til JSON
Brug json.dumps()
: Konverter et Python objekt(liste, ordbog, tuple osv.) til en JSON-streng.
Brug json.dump()
: Skriv Python data til en JSON-fil.
Konverter JSON til Python data
Brug json.loads()
: Konverter en JSON-streng til et Python objekt(liste, ordbog, tuple osv.).
Brug json.load()
: Læs data fra en JSON-fil og konverter dem til Python data.
Eksempel:
import json
# Convert Python data to JSON
data_dict = {"name": "John", "age": 30, "city": "New York"}
json_string = json.dumps(data_dict)
print(json_string) # Output: {"name": "John", "age": 30, "city": "New York"}
# Write Python data to a JSON file
with open("data.json", "w") as f:
json.dump(data_dict, f)
# Convert JSON to Python data
json_data = '{"name": "John", "age": 30, "city": "New York"}'
python_dict = json.loads(json_data)
print(python_dict) # Output: {'name': 'John', 'age': 30, 'city': 'New York'}
# Read data from a JSON file and convert to Python data
with open("data.json", "r") as f:
data_dict = json.load(f)
print(data_dict) # Output: {'name': 'John', 'age': 30, 'city': 'New York'}
Bemærk, at når du bruger JSON, vil specielle Python datatyper som None
, True
, False
blive konverteret til deres tilsvarende JSON-repræsentationer: null
, true
, false
, hhv.