我遇到了一些werid行为,这两个函数总是回响不同的大小。第一个回应一定的正确结果,而第二个回应 回应随机错误的结果,有谁知道为什么?我使用的是Python 2.7.10。
import urllib2
url = 'ftp://ftp.ripe.net/pub/stats/ripencc/delegated-ripencc-extended-latest'
def one():
response = urllib2.urlopen(url)
data = response.read()
print len(data)
def two():
print len(urllib2.urlopen(url).read())
one()
two()