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

西湖的风景是那样的雄伟壮观;湖水是那样清澈;是那样的平静,像一面镜子;湖边的景色是那样的美不胜收。

本文实例讲述了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()

运行结果如下图:

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

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

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

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

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

以上就是Python整型运算之布尔型、标准整型、长整型操作示例。一匹驴,吃再好的草,也不会成为一匹俊马。用执着和分别心去修行,再大的精进,也不会成佛。更多关于Python整型运算之布尔型、标准整型、长整型操作示例请关注haodaima.com其它相关文章!

您可能有感兴趣的文章
Python自动化运维-使用Python脚本监控华为AR路由器关键路由变化

Python自动化运维-netmiko模块设备自动发现

Python自动化运维—netmiko模块连接并配置华为交换机

Python自动化运维-利用Python-netmiko模块备份设备配置

Python自动化运维-Paramiko模块和堡垒机实战