羞涩蜜粉

文章
3
资源
0
加入时间
3年1月8天

pg 生成数据字典

select(select relname||'--'||(select description from pg_description where objoid=oid and objsubid=0) as comment from pg_class where oid=a.attrelid) as table_name,a.attname as column_name,...

day7-python的列表运用第七天,python的列表运用一、列表的相关操作二、列表相关的方法三、列表推导式好了,今天的课程就到这里了,大家明天见~

文章目录第七天,python的列表运用一、列表的相关操作1. 数学运算: +,*2. 比较运算1) == 和 !=2) >, <, >=, <=3.相关函数1) max、min2) sorted3) reversed(了解)4) sum5)list二、列表相关的方法1. clear2. copy1)直接赋值2) 拷贝3. count4.extend5.index1)列表.index(元素)2)列表.index(元素,开始下标,结束下标)6.