标签:lin word code 代码 name 原因 lib span otl
错误代码:
data = urllib.urlencode(data)
错误原因:python2和python3的urllib结构是有所不同的,所以不能这样用
解决方案:
data = urllib.parse.urlencode(data)
python3 AttributeError: module 'urllib' has no attribute 'urlencode'
标签:lin word code 代码 name 原因 lib span otl
原文地址:https://www.cnblogs.com/pengfy/p/11269656.html