我需要在python程序中下載文件,有人告訴我要這樣做。需要有關如何使用python下載文件的明確說明
source = urllib2.urlopen("http://someUrl.com/somePage.html").read()
open("/path/to/someFile", "wb").write(source)
它工作得很好,但我想了解代碼。
當你有像
patatoe = 1
不是一個變量?
,當你有這樣的:
blabla()
不是定義一個函數?
請,我會喜歡正確理解代碼。
我認識到,代碼(http://stackoverflow.com/questions/8116623/how-to-download-a-file-in-python)=) – chown