JSON(JavaScript Object Notation) este un format de date popular utilizat pentru schimbul de date între aplicații. Python acceptă manipularea JSON prin json
modul, permițându-vă să convertiți între Python date și formatul JSON.
Iată pașii pentru a lucra cu JSON în Python:
Convertiți Python datele în JSON
Utilizare json.dumps()
: convertiți un Python obiect(listă, dicționar, tuplu etc.) într-un șir JSON.
Utilizare json.dump()
: scrieți Python date într-un fișier JSON.
Convertiți JSON în Python date
Utilizare json.loads()
: convertiți un șir JSON într-un Python obiect(listă, dicționar, tuplu etc.).
Utilizare json.load()
: Citiți date dintr-un fișier JSON și convertiți-l în Python date.
Exemplu:
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'}
Rețineți că atunci când utilizați JSON, Python tipurile de date speciale precum None
, True
, False
vor fi convertite în reprezentările lor JSON corespunzătoare: null
, true
, false
, respectiv.