为了账号安全,请及时绑定邮箱和手机立即绑定

PEP8中的E127如何理解?

PEP8中的E127如何理解?

aluckdog 2019-02-20 21:07:36
在使用sublime编辑时弹出的PEP8中的E127:continuation line over-indented for visual indent如何理解?
查看完整描述

1 回答

?
一只萌萌小番薯

TA贡献1795条经验 获得超7个赞

代码风格问题.
PEP8 中指出:

Continuation lines should align wrapped elements either vertically using Python's implicit line joining inside parentheses, brackets and braces, or using a hanging indent [7]. When using a hanging indent the following should be considered; there should be no arguments on the first line and further indentation should be used to clearly distinguish itself as a continuation line.

也就是说在括号内的参数很多的时候, 为了满足每一行的字符不超过79个字符, 需要将参数换行编写, 这个时候换行的参数应该与上一行的括号对齐.
或者将所有参数换行编写, 此时第一行不能有参数, 即第一行的最后一个字符一定要是(, 换行后需要有一个缩进. 类似的规则也用在[], {}上.
例子:

# Aligned with opening delimiter.
foo = long_function_name(var_one, var_two,
                         var_three, var_four)

# Hanging indents should add a level.
foo = long_function_name(
    var_one, var_two,
    var_three, var_four)
查看完整回答
反对 回复 2019-03-01
  • 1 回答
  • 0 关注
  • 1323 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信