python PEP-8循环中断

f5emj3cl  于 11个月前  发布在  Python
关注(0)|答案(2)|浏览(154)

我试图找出一种方法来打破长循环,使其PEP-8有效。(我使用flake 8 vscode扩展)。
这就是代码:

for result_row in soup.find_all('div', {"class": "b2c-inner-data-wrapper"}):
    ..............

字符串
我得到的错误是:

line too long (88 > 79 characters)


我试过了:

for result_row in soup.find_all('div',
{"class": "b2c-inner-data-wrapper"}):


但我得到了:

continuation line under-indented for visual indent


什么是正确的方法呢?谢谢。

llew8vvj

llew8vvj1#

result_rows = soup.find_all('div', {"class": "b2c-inner-data-wrapper"})
for result_row in result_rows:
    ..............

字符串

bhmjp9jg

bhmjp9jg2#

for result_row in soup.find_all(
        'div',
        {"class": "b2c-inner-data-wrapper"}
):

字符串

相关问题