第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

對(duì)不按順序排列的字典鍵和值進(jìn)行分組

對(duì)不按順序排列的字典鍵和值進(jìn)行分組

尚方寶劍之說(shuō) 2023-06-06 17:37:25
下面我有一個(gè)字典列表:dict = [{'name': 'Sector',  'entity': 'ORG(100.0)',  'synonyms': "Sector:['sector', 'sphere'], , ",  'definition': 'Sector'},  {'name': 'Community Name',  'entity': 'PERSON(39.74)',  'synonyms': "Community:['biotic_community', 'community', 'community_of_interests', 'residential_area', 'residential_district']",  'definition': 'Community'}]如何添加將實(shí)體分組的新鍵,并將定義定義為值?所需的輸出(類別是新添加的鍵):dict = [{'name': 'Sector',  'category': {  'entity': 'ORG(100.0)',  'definition': 'Sector'},  'synonyms': "Sector:['sector', 'sphere'], , "},  {'name': 'Community Name',  'category':{  'entity': 'PERSON(39.74)',  'definition': 'Community'},   'synonyms': "Community:['biotic_community', 'community', 'community_of_interests', 'residential_area', 'residential_district']"}]我已經(jīng)嘗試過(guò)[{'name': i.pop('name'), 'category': i}  for I in dict],但它只適用于按順序排列的鍵,我如何修改它以便我可以選擇某些鍵,因?yàn)閑ntity它們definition彼此不相鄰?
查看完整描述

2 回答

?
絕地?zé)o雙

TA貢獻(xiàn)1946條經(jīng)驗(yàn) 獲得超4個(gè)贊

看來(lái)你需要


data = [{'name': 'Sector',

  'entity': 'ORG(100.0)',

  'synonyms': "Sector:['sector', 'sphere'], , ",

  'definition': 'Sector'},


  {'name': 'Community Name',

  'entity': 'PERSON(39.74)',

  'synonyms': "Community:['biotic_community', 'community', 'community_of_interests', 'residential_area', 'residential_district']",

  'definition': 'Community'}]


subkeys = ['entity', 'definition']

result = [{'category': {k: i.pop(k) for k in subkeys},  **i}  for i in data]

print(result)

輸出:


[{'category': {'definition': 'Sector', 'entity': 'ORG(100.0)'},

  'name': 'Sector',

  'synonyms': "Sector:['sector', 'sphere'], , "},

 {'category': {'definition': 'Community', 'entity': 'PERSON(39.74)'},

  'name': 'Community Name',

  'synonyms': "Community:['biotic_community', 'community', "

              "'community_of_interests', 'residential_area', "

              "'residential_district']"}]


查看完整回答
反對(duì) 回復(fù) 2023-06-06
?
四季花海

TA貢獻(xiàn)1811條經(jīng)驗(yàn) 獲得超5個(gè)贊

看起來(lái)您想轉(zhuǎn)換每個(gè)對(duì)象,在這種情況下,我會(huì)選擇具有自定義功能的地圖。


import json


dicts = [

    {

        'name': 'Sector', 

        'entity': 'ORG(100.0)', 

        'synonyms': "Sector:['sector', 'sphere'], , ", 

        'definition': 'Sector'

    },

    {

        'name': 'Community Name', 

        'entity': 'PERSON(39.74)', 

        'synonyms': "Community:['biotic_community', 'community', 'community_of_interests', 'residential_area', 'residential_district']", 

        'definition': 'Community'

    }

]


def map_func(item):

    item['category'] = {'entity': item['entity'], 'definition': item['definition']}

    item.pop('entity')

    item.pop('definition')

    return item


mapped_dicts = map(lambda x: map_func(x), dicts)

print(json.dumps(list(mapped_dicts), indent=2))


[

  {

    "name": "Sector",

    "synonyms": "Sector:['sector', 'sphere'], , ",

    "category": {

      "entity": "ORG(100.0)",

      "definition": "Sector"

    }

  },

  {

    "name": "Community Name",

    "synonyms": "Community:['biotic_community', 'community', 'community_of_interests', 'residential_area', 'residential_district']",

    "category": {

      "entity": "PERSON(39.74)",

      "definition": "Community"

    }

  }

]


查看完整回答
反對(duì) 回復(fù) 2023-06-06
  • 2 回答
  • 0 關(guān)注
  • 188 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)