在这个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?