首页 > 编程语言 > 详细

PythonStudy——数字类型 Number type

时间:2019-04-17 23:04:56      阅读:165      评论:0      收藏:0      [点我收藏+]
# 了了解:py2中小整数用int存放,大整数用long
# 1.整型
num = -1000000000000000000000000000000000000000000000000
print(num, type(num))
# 2.小数
num = 3.14
print(num, type(num))
# 3.布尔
res = True
print(res, type(res), isinstance(res, int))
print(3.14 + True)
# 4.复数
num = complex(5, 4)  # 5 + 4j
print(num + (4 + 5j))
# 重点:数字类型直接的相互转化 *****
a = 10
b = 3.74
c = True
print(int(a), int(b), int(c))
print(float(a), float(b), float(c))
print(bool(a), bool(b), bool(c))

 

PythonStudy——数字类型 Number type

原文:https://www.cnblogs.com/tingguoguoyo/p/10726529.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!