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' –