您的位置:首页技术文章
文章详情页

新手 - Python 爬虫 问题 求助

【字号: 日期:2022-06-26 16:21:19浏览:25作者:猪猪

问题描述

问题描述: ValueError:unsupported format character ’j’ (0x6a) at index 21即倒数第6行 .jpg j出什么问题了???import urllib.requestfrom bs4 import BeautifulSoupdef get_content(url):

html = urllib.request.urlopen(url)content = html.read().decode(’utf-8’)html.close()return content

def get_image(info):

soup = BeautifulSoup(info,'lxml')all_image = soup.find_all(’img’,class_='BDE_Image') #一个一个保存x=1for image in all_image: print(image) urllib.request.urlretrieve(image[’src’],'C:Usersjack Lees%.jpg' %(x)) x+=1

url = 'https://tieba.baidu.com/p/2218566379'info = get_content(url)print (info)get_image(info)

问题解答

回答1:

是%s ,而不是 s%

标签: Python 编程
相关文章: