Is formáid sonraí coitianta é JSON(JavaScript Object Notation) a úsáidtear chun sonraí a mhalartú idir feidhmchláir. Python tacaíonn sé le hionramháil JSON tríd an json
modúl, rud a ligeann duit thiontú idir Python sonraí agus formáid JSON.
Seo na céimeanna chun oibriú le JSON i Python:
Tiontaigh Python sonraí go JSON
Úsáid json.dumps()
: Tiontaigh Python réad(liosta, foclóir, tuple, etc.) go teaghrán JSON.
Úsáid json.dump()
: Scríobh Python sonraí chuig comhad JSON.
Tiontaigh JSON go Python sonraí
Úsáid json.loads()
: Tiontaigh teaghrán JSON ina Python réad(liosta, foclóir, tuple, etc.).
Úsáid json.load()
: Léigh sonraí ó chomhad JSON agus athraigh go Python sonraí iad.
Sampla:
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'}
Tabhair faoi deara, agus JSON á úsáid, go ndéanfar Python cineálacha sonraí speisialta ar nós None
, True
, a thiontú go dtí a n-uiríll comhfhreagracha JSON: ,, faoi seach. False
null
true
false