python 在多行上访问嵌套字典的最佳PEP-8实践是什么?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 在多行上访问嵌套字典的最佳PEP-8实践是什么?相关的知识,希望对你有一定的参考价值。
# snip...
# PyLint complains: C0330 Wrong continued identation.
result_set = (results_report['Results']
['Metadata']
['FooBarDefinitions']
['BazBatDefinition'])
# Flake8 complains: E211 - whitespace before '['
result_set = results_report['Results'] \
['Metadata'] \
['FooBarDefinitions'] \
['BazBatDefinition']
以上是关于python 在多行上访问嵌套字典的最佳PEP-8实践是什么?的主要内容,如果未能解决你的问题,请参考以下文章
python读取json格式文件大量数据,以及python字典和列表嵌套用法详解
在没有 NoneType 错误的情况下访问嵌套字典的 pythonic 方法是啥
python:字典嵌套列表
访问嵌套字典,它是密钥Python的值
当事先不知道层次结构中的键位置时,如何访问嵌套的 Python 字典键值对?
实现嵌套字典的最佳方法是啥?