0

我是一个*非常新的 python 程序员,这个脚本会运行,但它不会打印任何东西。
似乎数据为空,或未打印...谢谢,

import urllib2
i=1
while i<=1000:
    url = "http://www.uspto.gov/web/patents/classification/cpc/html/us" + str(i) + "tocpc.html"
    print url + '\n'
    data = urllib2.urlopen(url).read()
    print data
    #get the table data from dump
    #append to csv file
    i += 1
4

1 回答 1

0

首先:您正在导入 urrlib2,但使用的是 urllib。

将第一行更改为

import urllib

使脚本为我工作。

另外,考虑使用 for i in range(1,1000) 而不是 while 循环。

于 2013-04-09T15:23:26.610 回答