对不起,我的英语不好,我试图写成file.py并直接调用它,代码可能更具表现力=) 我们有办法做到这一点,因为这里还不存在
import importlib
import test
def a():
with open('test.py', 'a') as file:
file.write('aa = "5"')
importlib.reload(test)
def b():
print(test.aa)
a()
b()
当我按f5键不起作用时,第二次按推键工作。...