我不明白dest_url = r'goog.csv'程序的一部分。我認爲它是用來將我們從互聯網上獲得的文件保存到計算機上的,但是當沒有保存功能時,計算機如何知道它必須保存文件。就好像我們只有一個dest_url變量併爲其分配一個字符串值。如何將csv文件保存到計算機上的某個文件夾中?
from urllib import request
goog_url = 'http://real-chart.finance.yahoo.com/table.csv?s=GOOG&d=8&e=2&f=2014&g=d&a=2&b=27&c=2014&ignore=.csv'
def download_stock_data(csv_url):
response = request.urlopen(csv_url)
csv = response.read()
csv_str = str(csv)
lines = csv_str.split("\\n")
dest_url = r'goog.csv'
fx = open(dest_url, "w")
for line in lines:
fx.write(line + "\n")
fx.close()
download_stock_data(goog_url)
你認爲什麼'開(DEST_URL,「W 「)'呢? RT * M - > https://docs.python.org/2/tutorial/inputoutput.html#reading-and-writing-files –