码迷,mamicode.com
首页 > 编程语言 > 详细

【Python错误】日常记录(持续更新)

时间:2020-03-21 21:56:31      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:python错误   修改   nal   ext   XML   his   text   div   pytho   

  1、使用BeautifulSoup错误

The code that caused this warning is on line 8 of the file *.py. To get rid of this warning, pass the additional argument ‘features="lxml"‘ to the BeautifulSoup constructor.

  soup = BeautifulSoup(r.text)

  主要是缺少参数,虽然不会出错,但是报红总是感觉不舒服。修改如下:

soup = BeautifulSoup(r.text, "html.parser")

 

  

【Python错误】日常记录(持续更新)

标签:python错误   修改   nal   ext   XML   his   text   div   pytho   

原文地址:https://www.cnblogs.com/xjf125/p/12541888.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!