Python 版本行是什么意思? [英] What does the Python version line mean?

查看:27
本文介绍了Python 版本行是什么意思?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

启动 Python 解释器实例时显示的行是什么意思?

What does the line that's displayed when you start an instance of the Python interpreter mean?

Python 2.7 (r27:82525, Jul  4 2010, 07:43:08) [MSC v.1500 64 bit (AMD64)] on win32

所以我知道我有 Python 2.7,但其余的呢?

So I know I have Python 2.7, but what about the rest?

让我特别困惑的是 64 位 (AMD64) on win32r27:82525 部分.

Especially confusing to me are the 64 bit (AMD64) on win32 and r27:82525 sections.

推荐答案

您看到的那一行表示 Python 解释器是如何构建的.分解:

That line you see indicates how the python interpreter was built. Breaking it down:

Python 2.7                        -- Python version
(r27:82525, Jul 4 2010, 07:43:08) -- The build date and revision from src trunk 
                                     that was used to build this.
[MSC v.1500 64 bit (AMD64)]       -- Compiled with MSVC compiler targeting 64-bit
on win32                          -- Obviously for windows platform

这篇关于Python 版本行是什么意思?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆