长蟒蛇进口风格(保持在80个字母以下)有许多子模块

时间:2015-04-10 17:45:29

标签: python import styles pep8

在这个question中,我们知道如何导入类似

的内容
from asdfasdfasdfsdf import somethingthathisverylongandbreaksthepepstandards
# Should be
from asdfasdfasdfsdf import (
    somethingthathisverylongandbreaksthepepstandards)

我们如何处理以下情况?

from this.is.a.long.sequence.of.nested.folders.we.cant.break.up import a

如果我们在中间使用反斜杠,我不确定它是否是最pythonic /最时尚的解决方案。我该如何处理这个以保持PEP8?

0 个答案:

没有答案