Python __file__ not defined problem

__file__仅在文件中运行的时候才正常,而在交互式命令行中则需要使用变通的方法:

import os
import inspect
import sys
if not hasattr(sys.modules[__name__], '__file__'):
    __file__ = inspect.getfile(inspect.currentframe())

print os.path.dirname(os.path.abspath(__file__))

comments powered by Disqus