如何将参数名称传递给函数

时间:2017-06-21 07:51:09

标签: python list variables arguments names

我只是从#C开始进入python而我有这个问题,我无法找到答案,也许我无法形成一个问题< / p>

我在使用时需要创建两个列表:加载(肯定)加载(否定),正数是文件的路径。从#C开始我习惯使用这种结构,而不是仅使用另一个变量复制相同的代码,例如。如果我需要5个列表怎么办?使用此代码,我只能访问self.dictionary变量,但绝不能使用self.positives和self.negatives

我收到错误AttributeError:&#39; Analyzer&#39;对象没有属性&#39;肯定&#39; at the line&#39; for p in self.positives:&#39;

主要问题是:如何使self.dictionary = []从参数名称创建列表变量 - self.positives和self.negatives我稍后需要在代码中

def load(self, dictionary):

    i = 0
    self.dictionary = []
    with open(dictionary) as lines:
        for line in lines:
            #some more code
            self.dictionary.append(0)
            self.dictionary[i] = line
            i+=1

#later in code
    for p in self.positives:
        if text == p:
        score += 1
    for p in self.negatives:
        if text == p:
        score -= 1

#structure of a program:
class Analyzer():
    def load()
    def init()
         load(positives)
         load(negatives)
    def analyze()
        for p in self.positives

3 个答案:

答案 0 :(得分:0)

根据我对问题的理解,您正在尝试创建2个列表。你首先要声明它们是这样的:

FirstList = [ ]
SecondList = [ ]

然后将您要添加的任何值添加到列表中并按如下方式添加:

SecondList.append("The thing you want in the list")

在代码末尾,您的列表应填充您想要的内容。

答案 1 :(得分:0)

你不能编写self.dictionary并期望python将其转换为self.positives或self.negatives。 而不是积极的,将self.positives和self.negatives插入到函数中并使用它们。

答案 2 :(得分:0)

花了足够长的时间才弄明白:

只需从load返回self.dictionary,并在init中将其指定为self.positives = self.load(positives):

#structure of a program:
class Analyzer():
def load()
    return self.dictionary
def init()
    self.positives = self.load(positives)
    self.negatives = self.load(negatives)
def analyze()
    for p in self.positives