GL= General Ledger 指的是Oracle 的总帐系统. application_id = 101. 在uk似乎居然还有不同的解释(In the UK, it was referred to as the nominal ledger, where you recorded (posted) the accounting double entries from your sales and purchase day books etc.) SLA = Subledger a…
python shutil模块简单介绍 简介 shutil模块提供了大量的文件的高级操作.特别针对文件拷贝和删除,主要功能为目录和文件操作以及压缩操作. shutil 模块方法: copy(src, dst) Copy data and mode bits ("cp src dst") # 复制数据和权限,相对于cp命令 The destination may be a directory. # 目标数据可以为目录 copy2(src, dst) Copy data and all s…
简单介绍几个常用的函数,其他的请参考文档. operator.concat(a, b) **operator.__concat__(a, b)** 对于 a.b序列,返回 a + b(列表合并) --------------------------------- operator.countOf(a, b) 返回 b 在 a 中出现的次数 perator.delitem(a, b) **operator.__delitem__(a, b)** 删除 a 中索引为 b 的值 operator.ge…