有人可以解释一下 platform.python_version_tuple() 的返回值吗?什么是主要、次要和补丁级别?使用这些有什么意义?
一如既往,阅读 documentation有帮助。
您甚至可以直接在 IDLE 中执行此操作:
>>> import platform
>>> help(platform.python_version_tuple)
Help on function python_version_tuple in module platform:
python_version_tuple()
Returns the Python version as tuple (major, minor, patchlevel)
of strings.
Note that unlike the Python sys.version, the returned value
will always include the patchlevel (it defaults to 0).
>>> platform.python_version_tuple()
('3', '6', '1')
有关软件版本控制的一般信息,wikipedia (几乎总是)一个好的起点。
我是一名优秀的程序员,十分优秀!