import urllib2
f=urllib2.urlopen(raw_input("Please enter the URL:"))
ff=open(raw_input("Please enter the filename:"),"w+")
for x in range(1,1000):
s=f.read()
ff.write(s)
ff.close()
阅读全部 | 2019年4月4日 17:59
import urllib2
f=urllib2.urlopen(raw_input("Please enter the URL:"))
s=f.read()
ff=open(raw_input("Please enter the filename:"),"w+")
ff.write(s)
ff.close()
阅读全部 | 2019年2月28日 17:53
import urllib2
f=urllib2.open(raw_input("Please enter the URL:"))
s=f.read()
ff=open(raw_input("Please enter the filename:"),"w+")
ff.write(s)
ff.close()
阅读全部 | 2019年2月14日 11:56