私のコードの一部:
if self.tagname and self.tagname2 in list1:
try:
question = soup.find("div", "post-text")
title = soup.find("a", "question-hyperlink")
self.list2.append(str(title)+str(question)+url)
current += 1
except AttributeError:
pass
logging.info("%s questions passed, %s questions \
collected" % (count, current))
count += 1
return self.list2
pep8警告:
trailing whitespace 37:try
trailing whitespace 43:pass
これは何ですか?
末尾の空白は、行の最後の非空白文字の後から改行までのスペースまたはタブです。
投稿された質問では、try:
の後に1つの余分なスペースがあり、pass
の後に12の余分なスペースがあります。
>>> post_text = '''\
... if self.tagname and self.tagname2 in list1:
... try:
... question = soup.find("div", "post-text")
... title = soup.find("a", "question-hyperlink")
... self.list2.append(str(title)+str(question)+url)
... current += 1
... except AttributeError:
... pass
... logging.info("%s questions passed, %s questions \
... collected" % (count, current))
... count += 1
... return self.list2
... '''
>>> for line in post_text.splitlines():
... if line.rstrip() != line:
... print(repr(line))
...
' try: '
' pass '
文字列の終わりを参照してください?行の前にスペース(インデント)がありますが、後にスペースもあります。
エディターを使用して、行末とバックスペースを見つけます。最新のテキストエディタの多くは、たとえばファイルを保存するたびに、行末から末尾の空白を自動的に削除することもできます。
末尾の空白:
It is extra spaces (and tabs) at the end of line
^^^^^ here
それらを取り除きます:
#!/usr/bin/env python2
"""\
strip trailing whitespace from file
usage: stripspace.py <file>
"""
import sys
if len(sys.argv[1:]) != 1:
sys.exit(__doc__)
content = ''
outsize = 0
inp = outp = sys.argv[1]
with open(inp, 'rb') as infile:
content = infile.read()
with open(outp, 'wb') as output:
for line in content.splitlines():
newline = line.rstrip(" \t")
outsize += len(newline) + 1
output.write(newline + '\n')
print("Done. Stripped %s bytes." % (len(content)-outsize))
同様のpep8警告W291 trailing whitespace
があります
long_text = '''Lorem Ipsum is simply dummy text <-remove whitespace
of the printing and typesetting industry.'''
末尾の空白を探して削除してください。例:Lorem Ipsum is simply dummy text
の最後の2つの空白