5

我很难理解为什么有些变量是局部的,有些是全局的。例如,当我尝试这个时:

from random import randint

score = 0

choice_index_map = {"a": 0, "b": 1, "c": 2, "d": 3}

questions = [
    "What is the answer for this sample question?",
    "Answers where 1 is a, 2 is b, etc.",
    "Another sample question; answer is d."
]

choices = [
    ["a) choice 1", "b) choice 2", "c) choice 3", "d) choice 4"],
    ["a) choice 1", "b) choice 2", "c) choice 3", "d) choice 4"],
    ["a) choice 1", "b) choice 2", "c) choice 3", "d) choice 4"]
]

answers = [
    "a",
    "b",
    "d"
]

assert len(questions) == len(choices), "You haven't properly set up your question-choices."
assert len(questions) == len(answers), "You haven't properly set up your question-answers."

def askQ():
    # global score
    # while score < 3:
        question = randint(0, len(questions) - 1)

        print questions[question]
        for i in xrange(0, 4):
            print choices[question][i]
        response = raw_input("> ")

        if response == answers[question]:
            score += 1
            print "That's correct, the answer is %s." % choices[question][choice_index_map[response]]
            # e.g. choices[1][2]
        else:
            score -= 1
            print "No, I'm sorry -- the answer is %s." % choices[question][choice_index_map[answers[question]]]
        print score

askQ()

我收到此错误:

Macintosh-346:gameAttempt Prasanna$ python qex.py 
Answers where 1 is a, 2 is b, etc.
a) choice 1
b) choice 2
c) choice 3
d) choice 4
> b
Traceback (most recent call last):
  File "qex.py", line 47, in <module>
    askQ()
  File "qex.py", line 39, in askQ
    score += 1
UnboundLocalError: local variable 'score' referenced before assignment

现在,这对我来说完全有道理,为什么它会让我在得分上犯错。我没有在全局范围内设置它(我故意评论了那部分以显示这一点)。而且我特别没有使用 while 子句来让它继续前进(否则它甚至不会进入子句)。令我困惑的是为什么它在问题、选择和答案方面没有给我同样的错误。当我取消注释这两行时,脚本工作得非常好——即使没有我将问题、答案和选择定义为全局变量。这是为什么?这是我无法从搜索其他问题中发现的一件事——在这里,Python 似乎不一致。它与我使用列表作为其他变量有关吗?这是为什么?

(另外,第一次发帖;非常感谢我在不需要提问时发现的所有帮助。)

4

3 回答 3

5

这是因为您分配给score. 和变量只是被读取,questionsanswers不是被写入。

当您分配给变量时,该名称具有您所在的当前方法、类等的范围。当您尝试获取变量的值时,它首先尝试当前范围,然后尝试外部范围,直到它找到匹配项。

于 2012-11-13T03:12:13.810 回答
2

如果您认为 global 是解析器指令,这完全有道理

当你在做

score += 1 

被翻译成

score = score + 1

当解析器到达'score ='时,它会导致解释器不在本地空间之外搜索。

http://docs.python.org/2/reference/simple_stmts.html#global

于 2012-11-13T03:14:00.933 回答
1

发生的情况是,Python 会在检查全局范围之前检查本地范围内的变量。因此,当涉及到questionsand时answers,它们永远不会设置在本地范围内,因此 Python 会转移到全局范围,在那里可以找到它们。但是对于score,Python 会看到您进行了赋值 ( score += 1or score -= 1) 并锁定到本地范围。但是当你score在这些陈述中提到它时,它还不存在,所以 Python 会抛出一个异常。

于 2012-11-13T03:16:00.720 回答