python使用response.read()接收json数据

import json

result = response.read()
result.decode('utf-8')
jsonData = json.loads(result)

你可能感兴趣的:(Python)