Python:import urllib2报错解决方案
python2和3有些不一样:
python2:输出为print ‘hello world’
python3:输出为print(‘hello world’)
print在3里是函数,并且用urllib.request代替了urllib2;
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/16826.html
python2和3有些不一样:
python2:输出为print ‘hello world’
python3:输出为print(‘hello world’)
print在3里是函数,并且用urllib.request代替了urllib2;
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/16826.html