我是一个*非常新的 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