0
私はすでにコードのこの部分をやったが、私はそれをNoneType 'オブジェクトにはPythonの属性がありませんか?
for tmp in links:
jobref=re.search('jobId=(\d+)&', tmp).group()+".html"
print(jobref)
if tmp not in os.listdir('.'):
file=open(jobref,"w+")
file.write(urllib.urlopen(tmp).read())
はAttributeError実行したとき、それは私に、このエラーを表示:「NoneType」オブジェクトが属性「グループ」
にそれを修正する方法上の任意のアイデアを持っていませんか?
're.search'はおそらく' None'を返しています –