Your browser does not support the Canvas element.
摘要: 一、匿名函数 匿名函数的结构:变量 = lamda 参数: 返回值 a = lamda x : x*x # x为参数, : 后边的为函数体 print(a(x)) def fn(n) return pow(n,2) a = fn print(a._ _name_ _) 查看函数名 二、storted 阅读全文
posted @ 2018-07-20 15:53 一根小菜 阅读(239) 评论(0) 推荐(0) 编辑
Your browser does not support the Canvas element.