次の入力と結果のJSON文字列を順番に保持しようとしています。ここでPythonのストリームデータからのJSON
import json
testlist=[]
# we create a list as a tuple so the dictionary order stays correct
testlist=[({"header":{"stream":2,"function":3,"reply":True},"body": [({"format": "A", "value":"This is some text"})]})]
print 'py data string: '
print testlist
data_string = json.dumps(testlist)
print 'json string: '
print data_string
出力文字列されています:私は入力と同じ出力の順序を維持しようとしています
json string:
[{"body": [{"format": "A", "value": "This is some text"}], "header": {"stream": 2, "function": 3, "reply": true}}]
ここで入力された文字列とコードがあります。
助けがあれば助かります。私はこの1つのポイントを把握していないようです。
明確ではない。任意のコード例? –
本当に私がしたいことはしていませんが、私はここにいます: –