Just think what all this small piece of code can dowhile x <= 100:… temp = urllib2.urlopen(address+prefix+str(x)+suffix)… data = open(prefix+str(x)+suffix, ‘wb’ )… data.write(temp.read())… data.close()… temp.close()… x +=1Categories: Fun Programming
No Comments Yet
Leave a Comment