首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴cstdio的代码贴Python
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
1
cstdio