這篇文章給大家分享的是有關(guān)python如何使用參數(shù)對嵌套字典進行取值的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
成都創(chuàng)新互聯(lián)是專業(yè)的長春網(wǎng)站建設(shè)公司,長春接單;提供成都網(wǎng)站建設(shè)、做網(wǎng)站,網(wǎng)頁設(shè)計,網(wǎng)站設(shè)計,建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進行長春網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團隊,希望更多企業(yè)前來合作!話不多說,直接上代碼:
def dict_get(dic, locators, default=None): ''' :param dic: 輸入需要在其中取值的原始字典:param locators: 輸入取值定位器, 如:['result', 'msg', '-1', 'status'] :param default: 進行取值中報錯時所返回的默認值 (default: None) :return: 返回根據(jù)參數(shù)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)
下面是控制臺的輸出,大家可以看到輸出是符合預(yù)期結(jié)果的:)
failed
Process finished with exit code 0
感謝各位的閱讀!關(guān)于“python如何使用參數(shù)對嵌套字典進行取值”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!