gpt4 book ai didi

python - 命名元组声明缩进

转载 作者:太空宇宙 更新时间:2023-11-03 13:28:56 25 4
gpt4 key购买 nike

我有以下 namedtuple:

from collections import namedtuple

Product = namedtuple(
'Product',
'product_symbol entity unique_id as_of_date company_name followers linkedin_employees linkedin industry date_added date_updated description website sector product_industry'
)

声明它的最佳方式是什么,这样它就不会超过 80 个字符的 Python 行限制?

最佳答案

我提出了一个符合 PEP-8 的版本,它将您的属性声明为列表。

name = 'Product'
attrs = [
'product_symbol',
'entity',
'unique_id',
...
]

Product = namedtuple(name, attrs)

attrs 中添加尾随逗号,this makes it easy when doing diff comparisons .

关于python - 命名元组声明缩进,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50498825/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com