我只是通过检查模块文档。
之间的区别到底是什么?
inspect.getfile()
和
inspect.getsourcefile()
两者的文件路径完全相同。
最佳答案
getfile():
getfile()
还返回pyc(已编译)文件,其中getsourcefile()
仅返回源文件。
我只是通过检查模块文档。
之间的区别到底是什么?
inspect.getfile()
inspect.getsourcefile()
最佳答案
getfile():
getfile()
还返回pyc(已编译)文件,其中getsourcefile()
仅返回源文件。