摘要: 基本数据类型 数字 int(整型) 在32位机器上,整数的位数为32位,取值范围为-2**31~2**31-1,即-2147483648~2147483647 在64位系统上,整数的位数为64位,取值范围为-2**63~2**63-1,即-9223372036854775808~9223372036 阅读全文
posted @ 2020-08-20 18:25 wuchangsoft 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 内部执行过程 python内部执行过程如下: 内容编码 python解释器在加载 .py 文件中的代码时,会对内容进行编码(默认ascill) ASCII(American Standard Code for Information Interchange,美国标准信息交换代码)是基于拉丁字母的一套 阅读全文
posted @ 2020-08-20 17:36 wuchangsoft 阅读(191) 评论(0) 推荐(0) 编辑