怎样清除大BUG?

下面的程序中,最后一句是想打印下载的文件总数,为什么这个数字总是为1?怎样修改才能是实际的文件数量?
count = 1
for i in title:
    if i[1]!='':
        
        url1=f'https:{i[0]}'
        
        rea = requests.get(url=url1,headers=head)
        name = i[1]
        
        if os.path.exists(f'{file_path}\{name}'+'.jpg'):
            print(f'{name} 已经存在')
            continue
        else:
            open(f'{file_path}\{name}','wb').write(rea.content)
            print(f'{count}, {name} 下载成功')
        count +=1
print(f'{count}个文件已经下载')


请高手指点!

多谢指教!

你可能感兴趣的:(bug,python)