Python错误日常记录(持续更新)
Posted Mr.Landen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python错误日常记录(持续更新)相关的知识,希望对你有一定的参考价值。
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错误日常记录(持续更新)的主要内容,如果未能解决你的问题,请参考以下文章