我正在一個項目上工作,但我需要在函數之間傳遞變量,我不知道如何。我根本不擅長python。我剛剛開始像一個月前那樣學習它。無論如何,我只想知道在函數之間傳遞變量的最簡單方法。傳遞變量簡化
我可以這樣做嗎?
def a():
variable1 = 0
answer = raw_input()
if answer == "a":
print "Correct"
b()
def b():
#Variable1 should now be here also right?
a()
如果你想做更多的python,可以使用「namespace」上的一些指針:http://bytebaker.com/2008/07/30/python-namespaces/ https://docs.python.org/3/tutorial/classes的.html#中的python-範圍和名稱空間 – fredtantini