まず、私はプロのPythonプログラマーではない
ので、本当にばかげた質問をするかもしれません。ご容赦ください...
アイデアは次のとおりです。
class Foo:
def __init__(self):
self.myValue = ''
def function1(self, something):
self.myValue = something
def function2(self):
print self.myValue
foo = Foo()
foo.function1("target") --> I want to store the value "target" in the class and use it later
foo.function2() --> I want to print out "target"
明らかに、これは本当に間違っていますが、私はそれを修正する方法がわかりません。
道順を教えていただければ幸いです!