首页 > 其他 > 详细

第五天 常用基本函数

时间:2018-02-14 22:36:23      阅读:301      评论:0      收藏:0      [点我收藏+]
常用函数
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进制

 

第五天 常用基本函数

原文:https://www.cnblogs.com/zy0718/p/8449003.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!