欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

一起来学习一下python的数字类型

程序员文章站 2022-06-10 11:55:28
目录int 数字int类型float类型complex类型int(),float(),complex()类型之间的转换总结int 数字python 有3种数字类型int: 整数类型float: 浮点类...

int 数字

  • python 有3种数字类型
  • int: 整数类型
  • float: 浮点类型
  • complex: 复数类型

int类型

#int或整数是完整的数字,正数或负数,没有小数,不限制长度
a = 10
b = -10
c = 4555555555555555555555
print(">>int或整数是完整的数字,正数或负数,没有小数,不限制长度")
print(type(a),type(b),type(c))
print(a, b, c)

float类型

#float:浮动或浮点数是包含小数的正数或负数,不限制长度
d = 12.00
e = -12.21
f = 4555555555555.58
print(">>浮动或浮点数是包含小数的正数或负数,不限制长度")
print(type(d),type(e),type(f))
print(d, e, f)

complex类型

#complex 复数用'j'作为虚部编写
g = 2+3j
h = 7j
i = -7j
print(">>complex 复数用'j'作为虚部编写 ")
print(type(g),type(h),type(i))
print(g, h, i)

int(),float(),complex()类型之间的转换

j = 12
k = 12.63
l = 3j
print('>>int,float,complex类型之间的转换 ')
print('>> 转成int')
print(int(k))
#print(int(l)) 复数转换为int会报错
print('>> 转成flaot')
print(float(j))
#print(float(l)) 复数转换为float会报错
print('>>转成complex')
print(complex(k))
print(complex(j))

总结

本篇文章就到这里了,希望能够给你带来帮助,也希望您能够多多关注的更多内容!