Python整型运算之布尔型、标准整型、长整型操作示例


Posted in Python onJuly 21, 2017

本文实例讲述了Python整型运算之布尔型、标准整型、长整型操作。分享给大家供大家参考,具体如下:

#coding=utf8
def integerType():
  '''''
  布尔型:
  该值的取值范围只有两个值:True(1)、False(0)
  '''
  Tbool=True
  Fbool=False
  print "The True is stand for %d" %(Tbool)
  print "The False is stand for %d" %(Fbool)
  print
  '''''
  python标准整数类型:
  Python标准整数类型是最通用的数字类型。
  在大多数32位机器上,标准整数类型的取值范围:-2147483648 到 2147483647
  Python标准整数类型等价于C的有符号长整型。
  八进制整数以数字“0”开始。
  十六进制整数以“0x”或“0X”开始
  '''
  bInt=010101
  dInt=84455555
  oInt=075
  hInt=0xabc
  print "The binary of the standard integer:",bInt
  print "The decimal of the standard integer:",dInt
  print "The octal of the standard integer:",oInt
  print "The hexadecimal of the standard integer:",hInt
  print
  '''''
  python长整型:
  Python长整型能表达的数值仅仅与机器值的(虚拟)内存大小有关。
  长整数类型是标准整数类型的超集。
  在一个整数值后面加上个L(大写或小写都可以,推荐使用大写,避免和数字1混淆),表示这个整数时长整数。
  这个整数可以是十进制、八进制、十六进制。
  只有对长整数调用repr()才有机会看到L,对长整数调用str()看不到L。
  整型和长整型正在统一为一种。
  '''
  bLong=0111111111111111111111111111111111111111111111L
  dLong=8888888888888888888888888888888888888888888888L
  oLong=0777777777777777777777777777777777777777777777L
  hLong=0XFFFFFFFFFFFFFFFFFAAAAAAAAAAAAABBBBBBBBBB78L
  print "The binary of the long integer:",repr(bLong)
  print "The decimal of the long integer:",repr(dLong)
  print "The octal of the long integer:",repr(oLong)
  print "The hexadecimal of the long integer:",repr(hLong)
  print
'''''call the function : integerType()'''
integerType()

运行结果如下图:

Python整型运算之布尔型、标准整型、长整型操作示例

PS:这里再为大家推荐几款计算工具供大家进一步参考借鉴:

在线一元函数(方程)求解计算工具:
http://tools.3water.com/jisuanqi/equ_jisuanqi

科学计算器在线使用_高级计算器在线计算:
http://tools.3water.com/jisuanqi/jsqkexue

在线计算器_标准计算器:
http://tools.3water.com/jisuanqi/jsq

希望本文所述对大家Python程序设计有所帮助。

Python 相关文章推荐
python分割文件的常用方法
Nov 01 Python
Python中的自省(反射)详解
Jun 02 Python
Python中optparser库用法实例详解
Jan 26 Python
Python中的groupby分组功能的实例代码
Jul 11 Python
Python创建一个元素都为0的列表实例
Nov 28 Python
flask框架蓝图和子域名配置详解
Jan 25 Python
Python使用QQ邮箱发送邮件实例与QQ邮箱设置详解
Feb 18 Python
python实现超级马里奥
Mar 18 Python
Python3-异步进程回调函数(callback())介绍
May 02 Python
记录一下scrapy中settings的一些配置小结
Sep 28 Python
如何在向量化NumPy数组上进行移动窗口
May 18 Python
python套接字socket通信
Apr 01 Python
Python双精度浮点数运算并分行显示操作示例
Jul 21 #Python
详解Golang 与python中的字符串反转
Jul 21 #Python
Python随机生成手机号、数字的方法详解
Jul 21 #Python
Python实现将16进制字符串转化为ascii字符的方法分析
Jul 21 #Python
windows下Python实现将pdf文件转化为png格式图片的方法
Jul 21 #Python
python僵尸进程产生的原因
Jul 21 #Python
python下载图片实现方法(超简单)
Jul 21 #Python
You might like
转换中文日期的PHP程序
2006/10/09 PHP
php错误提示failed to open stream: HTTP request failed!的完美解决方法
2011/06/06 PHP
php+redis实现商城秒杀功能
2020/11/19 PHP
JavaScript-世界上误解最深的语言分析
2007/08/12 Javascript
Jquery知识点三 jquery表单对象操作
2011/01/17 Javascript
鼠标拖动实现DIV排序示例代码
2013/10/14 Javascript
在javascript中实现函数数组的方法
2013/12/25 Javascript
javascript使用百度地图api和html5特性获取浏览器位置
2014/01/10 Javascript
vue图片加载与显示默认图片实例代码
2017/03/16 Javascript
vue中使用refs定位dom出现undefined的解决方法
2017/12/21 Javascript
npm 更改默认全局路径以及国内镜像的方法
2018/05/16 Javascript
vue+vue-router转场动画的实例代码
2018/09/01 Javascript
js+canvas实现画板功能
2020/09/13 Javascript
vue print.js打印支持Echarts图表操作
2020/11/13 Javascript
手写Vue源码之数据劫持示例详解
2021/01/04 Vue.js
[40:50]2014 DOTA2国际邀请赛中国区预选赛 5 23 CIS VS LGD第四场
2014/05/24 DOTA
[01:06:42]VP vs NewBee Supermajor 胜者组 BO3 第二场 6.5
2018/06/06 DOTA
[43:58]DOTA2-DPC中国联赛定级赛 LBZS vs SAG BO3第一场 1月8日
2021/03/11 DOTA
[01:10:24]DOTA2-DPC中国联赛 正赛 VG vs Aster BO3 第一场 2月28日
2021/03/11 DOTA
pymssql ntext字段调用问题解决方法
2008/12/17 Python
python使用super()出现错误解决办法
2017/08/14 Python
使用matplotlib画散点图的方法
2018/05/25 Python
Python IDLE清空窗口的实例
2018/06/25 Python
Python Django框架实现应用添加logging日志操作示例
2019/05/17 Python
Python Web框架之Django框架Model基础详解
2019/08/16 Python
Python依赖包迁移到断网环境操作
2020/07/13 Python
Python引入多个模块及包的概念过程解析
2020/09/21 Python
python+openCV对视频进行截取的实现
2020/11/27 Python
27个经典Linux面试题及答案,你知道几个?
2014/03/11 面试题
八一建军节部队活动方案
2014/02/04 职场文书
2014年3.15团委活动总结
2014/03/16 职场文书
节能减排倡议书
2014/04/15 职场文书
英语专业自荐书
2014/06/13 职场文书
2016年庆祝六一儿童节活动总结
2016/04/06 职场文书
干货:如何写好工作计划!
2019/05/17 职场文书
tensorflow中的数据类型dtype用法说明
2021/05/26 Python