码迷,mamicode.com
首页 > 其他好文 > 详细

第五天 常用基本函数

时间:2018-02-14 22:38:27      阅读:234      评论:0      收藏:0      [点我收藏+]

标签:绝对值   enumerate   bsp   ash   mod   取出   打印   rate   程序   

常用函数
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进制

 

第五天 常用基本函数

标签:绝对值   enumerate   bsp   ash   mod   取出   打印   rate   程序   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!