我有一个要导入程序的文件(比如一个带有字典的文件)。在这个文件的开头,我想放一段代码,打印出这不是主文件,然后exit()
. 我发现的问题是,这段代码是在导入我不想发生的字典模块时运行的。如何防止这种情况?
我试过这个但它不起作用:
if not Main_file:
print('These aren\'t the droids you\'re looking for')
exit()
在主文件中当然会Main_file = True
在导入之前。
我有一个要导入程序的文件(比如一个带有字典的文件)。在这个文件的开头,我想放一段代码,打印出这不是主文件,然后exit()
. 我发现的问题是,这段代码是在导入我不想发生的字典模块时运行的。如何防止这种情况?
我试过这个但它不起作用:
if not Main_file:
print('These aren\'t the droids you\'re looking for')
exit()
在主文件中当然会Main_file = True
在导入之前。