Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何确定安装了哪个版本的 python 模块“时间”。对于其他模块.version.version或.__version__工作,但是对于时间,这两种方法都返回错误“模块”对象没有属性“版本”或“版本”
.version.version
.__version__
模块time内置在 Python 解释器中。除了解释器本身之外,没有其他版本可以成为有效答案(您可以使用 访问该版本sys.version)。
time
sys.version
其他内置模块如os等sys也没有自己的版本信息。
os
sys