[Python3] 内置常用函数

☆int(“字面值”,进制)强转为整型

☆float(“字面值”)强转为浮点型

☆hex(number)转换为16进制

☆oct(number)转换为8进制

☆bin(number)转换为2进制

☆round()四舍五入

★工具模块

①floor:向下取整函数

例子:math.floor(3.00)>>3

math.floor(-3.14)>>-4

②trunc:截断往0的方向取

例子:math.trunc(3.14)>>3

math.trunc(-3.14)>>-4

③ceil:向上取整函数

例子:math.ceil(3.14)>>4

还有decimal模块等等,就不一一记录了

你可能感兴趣的:([Python3] 内置常用函数)