Python で関数を呼び出して、実行中に現在のすべての変数にアクセスできるようにしたい (デバッグ用)。このようなもの:
def interruptWithTerminal():
interruptchoice = ""
while interruptchoice != "Y":
interruptchoice = raw_input("print what variable? (Y to continue script): ")
try:
print eval(interruptchoice)
except:
print "Error"
私の問題は、この関数を呼び出した時点で変数にアクセスできないことです。何か案は?