我是Python新手,我遇到了一个问题:
def a(): ....
class b :
def c():
x=a()
我的函数a
是在类之外定义的,我需要它来访问函数c
中的类。我该怎么做?
答案 0 :(得分:1)
只需使用a()
调用它,它可通过全局模块范围获取:
def a():
return "test"
class b:
def c(self):
x = a()
print x
b().c() # prints "test"