常用函数 abs() 绝对值 all()Return True if bool(x) is True for all values x in the iterable. If the iterable is empty, return True any()Return True if bool(x) is True for any x in the iterable. If the iterable is empty, return False. bin() 转化为二进制 bool() 判断True or False 0 None 空字符串判断为False bytes(‘‘,encoding=‘‘) 转换编码 bytes(‘‘,encoding=‘‘.decode(‘‘)) 先编码 再解码 编码和解码的格式要相同 chr()转化为ASCII码值 dir() 打印某个对象下面的方法 #divmod(x,y) 得到商和余数的一个元组 多用于分页 "" Return the tuple (x//y, x%y). Invariant: div*y + mod == x. enumerate() #eval() 将字符串中的结构提取出来 将字符串中的数学运算计算出来 hash() 可哈希的即不可变数据类型 得到一个可哈希的值 这个值长度固定,不可反推 用于 判断程序是否改变 help() 提供方法解释 bin()十进制转二进制 hex() 十进制转十六进制 oct()十进制转8进制