python3 AttributeError: module 'urllib' has no attribute 'urlencode'

Posted pengfy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python3 AttributeError: module 'urllib' has no attribute 'urlencode'相关的知识,希望对你有一定的参考价值。

错误代码:

data = urllib.urlencode(data)

错误原因:python2和python3的urllib结构是有所不同的,所以不能这样用

解决方案:

data = urllib.parse.urlencode(data)

以上是关于python3 AttributeError: module 'urllib' has no attribute 'urlencode'的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Python3 中解码编码文字/字符串的 numpy 数组? AttributeError:“numpy.ndarray”对象没有属性“解码”

[Bug]Python3.x AttributeError: libtest.so: undefined symbol: fact

python3 AttributeError: 'NoneType' object has no attribute 'split'

Python 3.6 AttributeError:模块“statsmodels”没有属性“compat”

python3 AttributeError: module 'urllib' has no attribute 'urlencode'

python reload(sys)找不到,name 'reload' is not defined和Python3异常-AttributeError: module 'sys