#coding=utf-8
__author__ = 'yzy'
import json;
s1 ='{"name":"Peggy","email":"peggy@gmail.com","homepage":"http://www.peggy.com"}'
s2 = '[{"name":"鸟巢","point":{"lat":"39.990","lng":"116.397"},"desc":"奥运会主场 地"},{"name":"北大乒乓球馆","point":{"lat":"39.988","lng":"116.315"},"desc":"乒乓 球比赛场地"},{"name":"北京工人体育场","point": {"lat":"39.930","lng":"116.446"},"desc":"足球比赛场地"}]'
s3='[{"yearMonth": {"month": {"string": "November", "value": "11"}, "year": {"string": "2012", "value": "2012"}}, "reservedMonthList": ["2", "3", "8", "9", "10", "11", "12", "13", "17", "18", "19", "20", "21", "22", "23"]}, {"yearMonth": {"month": {"string": "December", "value": "12"}, "year": {"string": "2012", "value": "2012"}}, "reservedMonthList": ["7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "21", "22", "23", "24", "25", "26", "27", "28", "30", "31"]}]'
s4='{"response_code":"ILLEGAL_ARGUMENT","response_message":"\u5f00\u53d1\u5546ID\u9519\u8bef"}'
target = json.JSONDecoder().decode(s4)
out = json.dumps(target, ensure_ascii=False,indent=1);
print out;