Home > Q&A > body text
怪我咯2017-04-18 09:38:05
It should be a version problem, py2.7 reports an error, but py3.5 does not.
python2.7: >>> import urllib >>> 'error' in dir(urllib) False python3.5: >>> import urllib >>> 'error' in dir(urllib) True