摘要: 查看所有内置函数: import builtins print(dir(builtins)) 运行结果: ['ArithmeticError', 'AssertionError', 'AttributeError', 'BaseException', 'BlockingIOError', 'Brok 阅读全文
posted @ 2020-08-04 14:31 爬坡的蜗牛 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 匿名函数 匿名函数又叫一句话函数,比较简单 语法: lambda 参数: 返回值 例1: ret = lambda a, b: a + b # a, b是参数, a + b 是要返回的值 print(ret(1, 2)) 3 例2: ret = lambda a, b: a if a > b els 阅读全文
posted @ 2020-08-04 14:28 爬坡的蜗牛 阅读(83) 评论(0) 推荐(0) 编辑