新手 - Python 爬虫 问题 求助
phpcn_u1582
phpcn_u1582 2017-07-05 10:35:09
0
1
874

问题描述: ValueError:unsupported format character 'j' (0x6a) at index 21
即倒数第6行 .jpg j出什么问题了???
import urllib.request
from bs4 import BeautifulSoup
def 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=1
for image in all_image:
    print(image)
    urllib.request.urlretrieve(image['src'],"C:\Users\jack Lee\s%.jpg" %(x))
    x+=1

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

phpcn_u1582
phpcn_u1582

全部回复(1)
迷茫

%s ,而不是 s%

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!