有人可以解释一下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(几乎总是)是一个很好的起点。

关于python - platform.python_version_tuple()的返回值是什么意思,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44199611/

10-12 16:55