中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python如何使用參數對嵌套字典進行取值

發布時間:2021-03-30 09:54:31 來源:億速云 閱讀:386 作者:小新 欄目:開發技術

這篇文章給大家分享的是有關python如何使用參數對嵌套字典進行取值的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

話不多說,直接上代碼:

 def dict_get(dic, locators, default=None):

 '''

 :param dic: 輸入需要在其中取值的原始字典 <dict>
 :param locators: 輸入取值定位器, 如:['result', 'msg', '-1', 'status'] <list>
 :param default: 進行取值中報錯時所返回的默認值 (default: None)
 :return: 返回根據參數locators找出的值

 '''

 if not isinstance(dic, dict) or not isinstance(locators, list):
  return default

 value = None

 for locator in locators:
  if not type(value) in [dict, list] and isinstance(locator, str) and not can_convert_to_int(locator):
  try:
   value = dic[locator]
  except KeyError:
   return default
  continue
  if isinstance(value, dict):
  try:
   value = dict_get(value, [locator])
  except KeyError:
   return default
  continue
  if isinstance(value, list) and can_convert_to_int(locator):
  try:
   value = value[int(locator)]
  except IndexError:
   return default
  continue

 return value

 def can_convert_to_int(input):
 try:
  int(input)
  return True
 except BaseException:
  return False

Best Practice

好的我們來進行一次簡單的最佳實踐:)

if __name__ == '__main__':
 dict_test = {"result": {"code": "110002", "msg": [{'status': 'ok'}, {'status': 'failed'}]}}
 result = dict_get(dict_test, ['result', 'msg', '-1', 'status'])
 print(result)

下面是控制臺的輸出,大家可以看到輸出是符合預期結果的:)

failed

Process finished with exit code 0

感謝各位的閱讀!關于“python如何使用參數對嵌套字典進行取值”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

芮城县| 江津市| 宝应县| 金溪县| 赤壁市| 城固县| 防城港市| 潞西市| 青冈县| 屯昌县| 东兰县| 双柏县| 襄城县| 辉县市| 兰坪| 什邡市| 杭州市| 略阳县| 鄂尔多斯市| 辉县市| 保山市| 香河县| 临泉县| 察雅县| 武山县| 阜新| 黄山市| 项城市| 毕节市| 丰原市| 五峰| 香格里拉县| 西吉县| 扎囊县| 凭祥市| 林州市| 开鲁县| 松潘县| 周宁县| 镇巴县| 锡林浩特市|