在 Python 类中,我有以下方法
def foo(self,arg1, arg2):
global run
run = False
在同一个类中,在我的构造函数中
while run:
sleep(0.01)
self.each_frame()
self.server.close()
run = True
以这种方式在类方法中对全局变量进行细化可以吗?