tup

匿名函数

淺唱寂寞╮ 提交于 2019-12-01 10:21:43
匿名函数定义 1.用匿名函数,找出最大value值对应的键 dict={"key1":20,"key2":80,"key":40} print(max(dict,key=lambda k:dict[k])) #函数的参数里面带key的有map filter min max sorted 一共就这5个 2.用匿名函数把两个元组(("a"),("b")),(("c"),("d"))转化成[{"a":"b"},{"c":"d"}] tup=zip((("a"),("b")),(("c"),("d"))) ret=map(tup,lambda tup:{tup[0]:tup[1]}) print(list(ret)) 以上就是68中内置函数 来源: https://www.cnblogs.com/648071634com/p/11681143.html

postgres之清理空间碎片

ぐ巨炮叔叔 提交于 2019-12-01 01:47:34
postgres=# select * from pg_stat_user_tables where relname = 'test'; -[ RECORD 1 ]-------+------------------------------ relid | 23400 schemaname | public relname | test seq_scan | 12 seq_tup_read | 49290 idx_scan | idx_tup_fetch | n_tup_ins | 22916 n_tup_upd | 25249 n_tup_del | 0 n_tup_hot_upd | 0 n_live_tup | 22916 n_dead_tup | 2333 n_mod_since_analyze | 0 last_vacuum | last_autovacuum | 2019-10-09 09:15:52.549356+08 last_analyze | last_autoanalyze | 2019-10-09 09:15:55.279256+08 vacuum_count | 0 autovacuum_count | 1 analyze_count | 0 autoanalyze_count | 2 postgres=# vacuum landing_person

Python列表和元组

孤者浪人 提交于 2019-11-29 00:59:50
最近都在用Python写一些脚本,用到一些基础的数据结构,今天来聊一聊Python中最常见的两种数据结构:列表(list)和元组(tuple),这两种数据结构到底有哪些区别呢? 一、共同点 1、列表和元组,都是一个可以放置任意数据类型的有序集合。 比如: l = [1, 2, 'hello', 'world'] # 列表中同时含有int和string类型的元素 l [1, 2, 'hello', 'world'] tup = ('jason', 22) # 元组中同时含有int和string类型的元素 tup ('jason', 22) 2、列表和元组都支持负数索引 ,-1表示最后一个元素,-2表示倒数第二个 元素,以此类推。 l = [1, 2, 3, 4] l[-1] 4 tup = (1, 2, 3, 4) tup[-1] 4 3、列表和元组都支持切片操作 。比如: list = [1, 2, 3, 4] l[1:3] # 返回列表中索引从1到2的子列表 [2, 3] tup = (1, 2, 3, 4) tup[1:3] # 返回元组中索引从1到2的子元组 (2, 3) 4、列表和元组都可以随意嵌套 。比如: l = [[1, 2, 3], [4, 5]] # 列表的每一个元素也是一个列表 tup = ((1, 2, 3), (4, 5, 6)) #

内置函数

戏子无情 提交于 2019-11-28 18:57:18
内置函数 def func(a): return a*a wo = lambda a:a*a print(wo(10)) print(func(6)) View Code 注意:   当多个参数是,用逗号分割。   匿名函数不管逻辑多复杂,只能写一行,且逻辑执行结束后的内容就是返回值   返回值和正常函数一样,可以是任意函数类型。 小题:现有两组元组((‘a’),(‘b')),((’s'),(’d')),请使用python中的内置函数生成列表[{'a':'s'},{'b':'d'}] ret = zip((('a'),('b')),(('c'),('d'))) def func(tup): return {tup[0]: tup[1]} res = map(func,ret) print(list(res)) View Code 正常函数写法 匿名函数 print(list(map(lambda tup:{tup[0]: tup[1]},zip((('a'),('b')),(('c'),('d')))))) View Code 来源: https://www.cnblogs.com/zly9527/p/11421485.html

LLDB not showing source code

混江龙づ霸主 提交于 2019-11-27 20:39:01
I am trying to debug a C++ program I am writing, but when I run it in LLDB and stop the program, it only shows me the assembler, not the original source. e.g. after the crash I’m trying to debug: Process 86122 stopped * thread #13: tid = 0x142181, 0x0000000100006ec1 debug_build`game::update() + 10961, stop reason = EXC_BAD_ACCESS (code=EXC_I386_GPFLT) frame #0: 0x0000000100006ec1 debug_build`game::update() + 10961 debug_build`game::update: -> 0x100006ec1 <+10961>: movq (%rdx), %rdx 0x100006ec4 <+10964>: movq %rax, -0xb28(%rbp) 0x100006ecb <+10971>: movq -0x1130(%rbp), %rax 0x100006ed2 <+10978>