为什么把第四行删除就没问题了,还有我输出print‘中文’ (‘中文’) 都会报错
import urllib2 url = 'https://www.zhipin.com' print '第一种方法' response = urllib2.urlopen(url) print response.getcode() print len(response.read()) #cont = response()
import urllib2 url = 'https://www.zhipin.com' print '第一种方法' response = urllib2.urlopen(url) print response.getcode() print len(response.read()) #cont = response()
2019-10-26
举报