美文网首页
Python进入信息的意义

Python进入信息的意义

作者: dnhb | 来源:发表于2018-05-22 16:35 被阅读0次

Python进入信息的意义

@(Python入门)

[TOC]

问题描述

进入 Python 的时候都会看到如下提示:

Python 3.6.5 (v3.6.5:f59c0932b4, Mar 28 2018, 17:00:18) [MSC v.1900 64 bit (AMD64)] on win32

但是这个提示中的每一句话是什么意思呢?

解释

code interpretion
Python 3.6.5 Python version
v3.6.5:f59c0932b4
Mar 28 2018, 17:00:18 the build date
MSC v.1900 64 bit (AMD64) Compiled with MSVC compiler targeting 64-bit
on win32 windows platform

问题

Q1: why use win32 but not win64?
A1: It's mainly due to historical reasons. win32 is a bit of a misnomer since it's generally used to refer to windows platform regardless of bit width support.

Q2: why use () at first and then use [] ?
A2: Elimination of ambiguity. In the second sentence, there is a tip that MSC v.1900 64 bit is based on AMD64 but not Intel 64, and author use () to light that, so if author use () in the second sentence, there must be ambiguous.

Q3: f59c0932b4 means?
A3: maybe it is the revision.

参考

[1]Entry message
[2]What does the Python version line mean?
[3]What version of Visual Studio is Python on my computer compiled with?

相关文章

  • Python进入信息的意义

    Python进入信息的意义 @(Python入门) [TOC] 问题描述 进入 Python 的时候都会看到如下提...

  • python命令实践中

    1.python显示当前mac自带的版本信息并进入python环境 2.python3显示当前mac自己安装的最新...

  • 全栈Python 编程必备

    据说: 2019年, 浙江信息技术高考可以考python了; 2018年, Python 进入了小学生的教材; 2...

  • 信息进入大脑

    一个信息,想要让它进入人的大脑,是很难的。根据人脑得原理,人类的大脑每天要处理那...

  • test

    python 输出python版本信息

  • CMD目录操作

    返回上级目录 返回根目录 进入指定目录 进入python 退出python

  • Python扬帆起航

    为什么学习编程? 浙江省信息技术课程改革方案已经出台,Python 确定进入浙江省信息技术高考,从 2018 年起...

  • Python实战计划学习笔记示例(3) 爬取租房信息

    学习Python第二节课,爬取商品信息 1 目标任务 1.1进入小猪租(http://bj.xiaozhu.com...

  • InterVar

    2021/03/04  InterVar是用于临床意义变异解释的python脚本,是一种生物信息学软件工具,可根据...

  • python

    mac自带的python安装在/usr/bin/python目录下 进入终端直接键入python即可进入交互模式或...

网友评论

      本文标题:Python进入信息的意义

      本文链接:https://www.haomeiwen.com/subject/niqkjftx.html