-1返回python列表倒数第二项



我使用Python 3.4编写一个脚本,通过使用urllib提取数据并将其存储在文本文件中,并使用numpy解包,从雅虎财经的ChartAPI页面提取数据。然而,当我尝试使用[-1]访问列表中的最后一个元素时,我最终得到倒数第二个元素,而不是最后一个元素。

下面是我的相关代码:

import urllib.request
import numpy as np
def n_year_data(symbol):
    tempFile = 'temp.txt'
    open(tempFile,'w+') # to clear any previous content
    yahooChartApi = 'http://chartapi.finance.yahoo.com/instrument/1.0/'+symbol+'/chartdata;type=quote;range=1y/csv'
    with urllib.request.urlopen(yahooChartApi) as f:
        sourceCode = f.read().decode('utf-8')
    splitSource = sourceCode.split('n')
    for eachLine in splitSource:
        splitLine = eachLine.split(',') 
        if len(splitLine) == 6: 
            if 'values' not in eachLine:
                saveFile = open(tempFile,'a')
                linetoWrite = eachLine+'n'
                saveFile.write(linetoWrite)
    date, close, high, low, openPrice, volume = np.loadtxt(tempFile, delimiter=',', unpack=True)
    print(date[-1])
n_year_data("GOOG")

上面的代码应该返回最后日期20150707。但是,它返回最后一个日期之前的日期20150706。此外,当我查看我的文本文件时,所有的日期都在那里,就像他们应该的那样。提前感谢你的帮助或建议。

由于在完成写入后没有正确关闭文件,因此可能会出现此问题或其他潜在问题。

不要在循环中打开并追加文件

考虑使用这个,而不是:

with open('temp.txt', 'w') as f:
   for item in iterable:
       f.write('hello')
with open('temp.txt', 'r') as f:
   for line in f:
       print(line)

相关内容

  • 没有找到相关文章

最新更新