'global'を誤って使用していると思います。Pythonリファレンスを参照してください。グローバルなしで変数を宣言してから、グローバル変数にアクセスする場合は関数内で宣言する必要がありますglobal yourvar
。
#!/usr/bin/python
total
def checkTotal():
global total
total = 0
この例を参照してください。
#!/usr/bin/env python
total = 0
def doA():
# not accessing global total
total = 10
def doB():
global total
total = total + 1
def checkTotal():
# global total - not required as global is required
# only for assignment - thanks for comment Greg
print total
def main():
doA()
doB()
checkTotal()
if __name__ == '__main__':
main()
グローバル合計doA()
を変更しないため、出力は11ではなく1になります。