简体   繁体   English

将值附加到python中的列表

[英]appending values to a list in python

i am doing this: 我正在这样做:

def GetDistinctValues(theFile, theColumn):
  lines=theFile.split('\n')
  allValues=[]
  for line in lines:
    allValues.append(line[theColumn-1])
  return list(set(allValues))

i am getting string index out of range on this line: 我在此行上的string index out of range

allValues.append(line[theColumn-1])

does anyone know what i am doing wrong? 有人知道我在做什么错吗?

here's the complete code if needed: 如果需要,这是完整的代码:

import hashlib

def doStuff():
  createFiles('together.csv')

def readFile(fileName):
  a=open(fileName)
  fileContents=a.read()
  a.close()
  return fileContents

def GetDistinctValues(theFile, theColumn):
  lines=theFile.split('\n')
  allValues=[]
  for line in lines:
    allValues.append(line[theColumn-1])
  return list(set(allValues))

def createFiles(inputFile):
  inputFileText=readFile(inputFile)
  b = inputFileText.split('\n')
  r = readFile('header.txt')
  DISTINCTCOLUMN=12
  dValues = GetDistinctValues(inputFileText,DISTINCTCOLUMN)

  for uniqueValue in dValues:
    theHash=hashlib.sha224(uniqueValue).hexdigest()
    for x in b:
      if x[DISTINCTCOLUMN]==uniqueValue:
        x = x.replace(', ',',').decode('latin-1','ignore')
        y = x.split(',')
        if len(y) < 3:
          break
        elif len(y) > 3:
          desc = ' '.join(y[3:])
        else:
          desc = 'No description'
        # Replacing non-XML-allowed characters here (add more if needed)
        y[2] = y[2].replace('&','&amp;')

        desc = desc.replace('&','&amp;')

        r += '\n<Placemark><name>'+y[2].encode('utf-8','xmlcharrefreplace')+'</name>' \
          '\n<description>'+desc.encode('utf-8','xmlcharrefreplace')+'</description>\n' \
          '<Point><coordinates>'+y[0]+','+y[1]+'</coordinates></Point>\n</Placemark>'
    r += readFile('footer.txt')
    f = open(theHash,'w')
    f.write(r)
    f.close()

That is happening because line doesn't have as many elements as the code is assuming. 之所以发生这种情况,是因为line没有代码假定的那么多元素。 Try the following: 请尝试以下操作:

for line in lines:
    if len(line) < theColumn:
        print "This line doesn't have enough elements:\n" + line
    else:
        allValues.append(line[theColumn-1])
return list(set(allValues))

That will give you a hint, that is the type of error you expect when trying to access an element out of the range of a list ie a non existent element. 这将为您提供提示,这是尝试访问列表范围之外的元素(即不存在的元素)时遇到的错误类型。

The error isn't caused by append() , It's because the line isn't long enough. 该错误不是由append()引起的,这是因为该line不够长。 Maybe your file has a empty line at the end. 也许文件末尾有一个空行。 You could try 你可以试试

def GetDistinctValues(theFile, theColumn):
  lines=theFile.split('\n')
  allValues=[]
  for line in lines:
    if line:
      allValues.append(line[theColumn-1])
  return list(set(allValues))

otherwise an exception handler can help find what's going wrong 否则,异常处理程序可以帮助查找问题所在

def GetDistinctValues(theFile, theColumn):
  lines=theFile.split('\n')
  allValues=[]
  for line in lines:
     try:
        allValues.append(line[theColumn-1])
     except IndexError:
        print "line: %r"%line
  return list(set(allValues))
line[theColumn-1])

This will of course raise the mentioned error if the string(line) is shorted then 'theColumn'. 如果将字符串(行)短接“ theColumn”,这当然会引起上述错误。 What else would you expect? 您还会期待什么?

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM