使用Python的json庫可以很方便地處理JSON數據。下面是一些使用json庫的常見操作:
import json
json_str = '{"name": "John", "age": 30, "city": "New York"}'
data = json.loads(json_str)
print(data) # 輸出:{'name': 'John', 'age': 30, 'city': 'New York'}
data = {'name': 'John', 'age': 30, 'city': 'New York'}
json_str = json.dumps(data)
print(json_str) # 輸出:{"name": "John", "age": 30, "city": "New York"}
with open('data.json', 'r') as file:
data = json.load(file)
print(data)
data = {'name': 'John', 'age': 30, 'city': 'New York'}
with open('data.json', 'w') as file:
json.dump(data, file)
這些是json庫的一些基本用法,可以根據具體需求進行更復雜的操作。更多詳細的用法可以查看官方文檔:https://docs.python.org/3/library/json.html