下面的程序中,本意是要在写每个文件之前查看文件是否已经存在,如果存在就不写文件了,如果不存在,就写文件。但是,程序仅仅查询了第一个文件已经存在就退出了,怎样让程序继续查看其他的文件是否存在,并给出提示结果? count1 = 1 for i in tup: url2 = f'https:{i[1]}' res2 = requests.get(url=url2,headers=head) if os.path.exists(f'{file_path1}\{count1}.gif'): print(f'{file_path}\{count1}.gif'+'已经存在') break else: open(f'{file_path}\{count1}.gif','wb').write(res2.content) print(count1,i[1]+' 下载成功!') count1 +=1
请高手指点!感谢指教!