发布时间:2019-07-12 10:06:39编辑:auto阅读(1413)
int、float、complex、bool都是class,1,5.0,2+3j都是对象即实例;
int:python3的int就是长整型,且没有大小限制,受限于内存区域的大小;
float:额整数部分和小数部分组成。支持十进制和科学计数法表示。只有双精度型 。
complex:有实数和虚数部分组成,实数和虚数部分都是浮点数,3+4.2j
bool:int的子类,仅有2个实例True、False对应1和0,可以和整数直接运算
int(x) 返回一个整数
float(x) 返回一个浮点数
complex(x)、complex(x, y) 返回一个复数
bool(x) 返回布尔值,前面讲过False等价的对象
round() :四舍六入,五取偶
floor():向下取整
ceil():向上取整
int():取整数部分,和//整除一样
import math
print(math.floor(2.5))
print(math.ceil(2.5))
print(round(2.51))
print(round(2.5))
print(round(2.4))
min()
max()
pow(x,y) 等于x**y
math.sqrt()
bin()
oct()
hex()
math.pi 派
math.e自如常数
type(obj),返回类型,而不是字符串
isinstance(obj,class_or_tuple),返回布尔值
type(a)
type('abc')
type(123)
isinstance(6,str)
isinstance(6,(str,bool,int))type(1+True)
上一篇: [unity3d]Unity3D与and
下一篇: 使用pypiserver搭建私有源
47481
45782
36781
34305
28952
25587
24432
19603
19092
17624
5455°
6038°
5554°
5629°
6555°
5367°
5367°
5873°
5847°
7160°