どのようにオブジェクト/ dict(?)プロパティを新しいオブジェクト/ dictに広めることができますか?Python 2.7xにJavascriptのようにオブジェクトスプレッド演算子がありますか?
シンプルなJavascriptを:
const obj = {x: '2', y: '1'}
const thing = {...obj, x: '1'}
// thing = {x: '1', y: 1}
のPython:
regions = []
for doc in locations_addresses['documents']:
regions.append(
{
**doc, # this will not work
'lat': '1234',
'lng': '1234',
}
)
return json.dumps({'regions': regions, 'offices': []})
方法[引数が開梱?]について(https://caisbalderas.com/blog/python-function-unpacking-args-and-kwargs/) – Felipe
'OBJ:あなたは次のように何かをする必要があります。 copy() 'と' new_obj.update({'x': '1'}) ' –