比如爬baidu.com, 在python 3.4 中应该这么写
<span style="font-family:Microsoft YaHei;font-size:14px;">import urllib.request def getHtml(url): page = urllib.request.urlopen(url) html = page.read() return html html = getHtml("http://baidu.com") print (html) </span>
错误提示1:
print "hello" SyntaxError: Missing parentheses in call to ‘print‘
print 的语法在2 跟3 中不一样
print ("hello") in python 3
print "hello" in python 2
错误提示2 :
No module named ‘urllib2‘
python3.3里面,用urllib.request代替urllib2
参考官方文档 https://docs.python.org/3/
版权声明:本文为博主原创文章,未经博主允许不得转载。
时间: 2025-01-01 11:20:42