개체/dict (?) 속성을 새 개체/dict에 어떻게 퍼뜨릴 수 있습니까?Python 2.7x에서 Javascript와 같은 오브젝트 스프레드 연산자가 있습니까?
간단한 자바 스크립트 :
const obj = {x: '2', y: '1'}
const thing = {...obj, x: '1'}
// thing = {x: '1', y: 1}
파이썬 :
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'})' –