您当前的位置: 首页 >  Python

宝哥大数据

暂无认证

  • 0浏览

    0关注

    1029博文

    0收益

  • 0浏览

    0点赞

    0打赏

    0留言

私信
关注
热门博文

Python3.X出现AttributeError: module 'urllib' has no attribute 'urlopen'错误

宝哥大数据 发布时间:2019-05-01 10:11:32 ,浏览量:0

1、Python3.X出现AttributeError: module ‘urllib’ has no attribute 'urlopen’错误
pg = urllib.urlopen(searchURL)          # python2x
pg = urllib.request.urlopen(searchURL)			# python3x
2、module ‘urllib’ has no attribute ‘request’

因为python3.X有时候不会将子模块自动导入进去,所以改成如下

import urllib.request
关注
打赏
1587549273
查看更多评论
立即登录/注册

微信扫码登录

0.0395s