常用内置函数及用法: 1. callable() def callable(i_e_, some_kind_of_function): # real signature unknown; restored from __doc__ """检查对象object是否可调用.如果返回True,object仍然可能调用失败:但如果返回False,调用对象ojbect绝对不会成功 Return whether the object is callable (i.e., some kin…
一.内置函数 1.***eval:执行字符串类型的代码,并返回最终结果(去掉括号里面是什么就返回什么). print(eval('3+4')) #7 ret = eval('{"name":"laonanhai"}') print(ret,type(ret)) #{'name': 'laonanhai'} 2.***exec:执行字符串类型的代码,流程语句(没有返回值,打印执行过程). ret1=''' li= [1,2,3] for i in li: print(…
列表推导式 [表达式 for 变量 in range(n) if 条件] 等效于 for 变量 in in range(n): if 条件: 表达式 优点:书写方便,缺点:不易读 注意:用的是方括号,如果是小括号则不是列表推导式,而是生成器(不做要求) Lambda匿名函数 lambda 变量:表达式 表达式是函数的处理逻辑,冒号前面的返回值 例如实现5的阶乘 1*2*3*4*5=120 优点:书写方便,缺点:不易读,只能写简单功能,只能使用一次 os模块 os是操作系统模块 1.getcw…
面向对象编程之classmethod和staticmethod classmethod 和 staticmethod都是python内置的装饰器 classmethod 的作用:给在类内部定义的方法装饰,将类的内部方法变为类的绑定方法 绑定方法的特殊之处是会将对象本省当作第一个参数传入方法中 类的绑定方法:由类来调用,哪个类调用,就默认将哪个类当作第一个参数传入 class DB: __data = "lee is a big haha!" def __init__(self, use…
movie_people=["sb+_alex","sb_wupeiqi","han"] # def filter_test(array): # ret=[] # for p in array: # if not p.startswith('sb'): # ret.append(p) # # return ret # # end=filter_test(movie_people) # print(end) # movie_people=[&quo…