数字类型:number 整数:int 浮点数:float(用以表示小数,相当于其他语言的双精度浮点数) 布尔类型:bool(True、False:首字母需大写) 复数:complex 查看数据类型:type() >>> type(1+0.1) >>> type(1) >>> type(1+1.0) >>> type(1*1.0) >>> type(3/2) >>> type(3//3) >>> type(True) >>> type(False) *双斜杠相当于整除,单斜杠结果由int转float 进制表示 二进制:0b(Binary system) 八进制:0o(Octal number