Python的__file__实际上做了什么?
发布时间:2020-12-16 21:38:12 所属栏目:Python 来源:网络整理
导读:参见英文答案 Is module __file__ attribute absolute or relative?4个 我一直认为__file__变量总是给你当前的文件名,但这似乎并不完全是它的作用.因为如果我认为这是真的,我一直面临着一个错误. 有人告诉我“__file__指的是最后搜索的模块” 这似乎更准确,
参见英文答案 >
Is module __file__ attribute absolute or relative?4个
我一直认为__file__变量总是给你当前的文件名,但这似乎并不完全是它的作用.因为如果我认为这是真的,我一直面临着一个错误. 有人告诉我“__file__指的是最后搜索的模块” 我找不到Python文档中提到的任何具体内容.
解决方法__file__ is the pathname of the file from which the module was loaded,if it was loaded from a file. The __file__ attribute is not present for C modules that are statically linked into the interpreter; for extension modules loaded dynamically from a shared library,it is the pathname of the shared library file. 从这里: (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |