测试积点老人 发表于 2021-3-31 13:52:14

python中我用wb方式打开文件,报错说没有此文件?

明明是文件存在就将其覆盖不存在就创建新文件,为什么还会报错?代码如下:A=requests.get(a) soup=BeautifulSoup(A.text,features="lxml") name=str(soup.find('title').text).strip(lu) if e in range(7, 11): response=requests.get("https://music.163.com/song/media/outer/url?id=" + d + ".mp3") with open(name+'.mp3',mode='wb') as f: f.write(response.content) f.close()

qqq911 发表于 2021-4-1 12:16:17

无此文件

郭小贱 发表于 2021-4-1 16:05:30

没有找到文件哇...
页: [1]
查看完整版本: python中我用wb方式打开文件,报错说没有此文件?