Benötigen Sie Hilfe beim Verständnis von Python-Verschlüssen?

Ich habe diesen Code:

import re

def doReplace(toReplace):
    i = 1
    def chapterReplacer(_):
        result = 'Chapter %i' % i
        i += 1
        return result

    return re.sub('Chapter [a-zA-Z]+', chapterReplacer, test)

test = 'Chapter one Chapter Two Chapter three'
print doReplace(test)

Wenn ich es ausführe, erhalte ich die folgende Fehlermeldung:

Traceback (most recent call last):
  File "C:/Python26/replace.py", line 13, in <module>
    print doReplace(test)
  File "C:/Python26/replace.py", line 10, in doReplace
    return re.sub('Chapter [a-zA-Z]+', chapterReplacer, test)
  File "C:\Python26\lib\re.py", line 151, in sub
    return _compile(pattern, 0).sub(repl, string, count)
  File "C:/Python26/replace.py", line 6, in chapterReplacer
    result = 'Chapter %i' % i
UnboundLocalError: local variable 'i' referenced before assignment

Ich hatte den Eindruck, dass chapterReplacer die lokale Variable i erfassen würde, aber das scheint nicht zu passieren?

Antworten auf die Frage(4)

Ihre Antwort auf die Frage