pep 8: e128 continuation line under-indented for visual indent
时间: 2023-04-27 17:05:55 浏览: 236
PEP 8规定的e128错误表示代码中的连续行缩进不足以匹配视觉缩进。这意味着代码中的连续行缩进应该与前一行的缩进相同或更多,以便代码易于阅读和理解。如果出现此错误,应该调整缩进以符合PEP 8规范。
相关问题
PEP 8: E128 continuation line under-indented for visual indent
PEP 8 is a style guide for Python code and its E128 error message means that the continuation line is under-indented compared to the visual indentation. In other words, the continuation line should be indented by at least 4 spaces (or one tab) from the previous line's indentation level.
Here's an example code snippet that violates this rule:
```
def some_function(arg1, arg2,
arg3, arg4):
# code here
```
To fix this error, we can increase the indentation level of the continuation line to match the previous line's visual indentation:
```
def some_function(arg1, arg2,
arg3, arg4):
# code here
```
It's important to follow PEP 8 guidelines to write clean and consistent code that is easy to read and maintain.
pep 8: e127 continuation line over-indented for visual indent
PEP 8规定,如果代码中的连续行缩进过多,超出了可视缩进的范围,就会出现E127错误。这意味着需要调整代码的缩进,以确保代码的可读性和一致性。建议使用4个空格作为缩进,而不是制表符。如果您使用的是编辑器或IDE,可以启用自动缩进功能,以避免这种错误的发生。
阅读全文