day13 内置函数2 重要的 abs():求绝对值--返回的都是正数 # lst = [-1,-2,-3] # for i in lst: # print(abs(i)) # print([abs(i) for i in lst]) # s = -123 # print(abs(s)) enumerate('可迭代对象','序号的起始值'):枚举,默认的起始值是0 # lst = [-1, -2, -3] # print([i for i in enumerate([abs(i) for i…
一.map函数 1.自定义函数,实现类似于map函数的功能 num_l = [1,3,4,5,6,9] def power(n): return n ** 2 def map_test(func,array): li0 = [] for i in array: p = func(i) li0.append(p) return li0 f = map_test(power,num_l) 运用自己定义的函数来计算 print(f) f = map_test(lambda x: x ** 2, num…
一.匿名函数 1.定义:定义函数的时候不需要定义函数名 2.具体例子: #普通函数 def add(x,y): return x + y #匿名函数 lambda x,y: x + y 调用匿名函数: f = lambda x,y: x + y #赋值后可以调用 print(f(1,2) lambda中(也就是:后面)只能进行简单的表达式操作,不能进行赋值操作. 二. 三元表达式 格式为:条件为真时返回的结果 if 条件判断 else 条件为假时返回的结果 x = 2 y = 1 r = x i…
[tgpl]go匿名函数 0. 定义 匿名函数顾名思义是没有名字的函数, Named functions can be declared only at the package level, but we can use a function literal to denote a function value within any expression. 1. 最简单的例子Map strings.Map(func(r rune) rune { return r + 1 }, "HAL-9000…