标签: python python-2.7 global-variables
start=True def funcA(): if(start): #doSomething else: start=False
这导致'开始'到未解决的引用 有没有办法在funcA中将'start'改为False?