出现警告DeprecationWarning:The html argument of XMLParser() is deprecated

在使用python3.7的时候,运行以前的脚本出现了警告

DeprecationWarning:The html argument of XMLParser() is deprecated

一开始想忽略警告,发现很费劲,后来发现了一个简单的方法:

只需要修改一下报错的地方即可

_XMLParser.__init__(self, target=target, encoding=encoding)

出现警告DeprecationWarning:The html argument of XMLParser() is deprecated_第1张图片

你可能感兴趣的:(出现警告DeprecationWarning:The html argument of XMLParser() is deprecated)