文件不关?Python开发老手都栽这坑里,你还在硬扛?

📅 2026/8/14 4:11:20
文件不关?Python开发老手都栽这坑里,你还在硬扛?
文件的操作在今后的开发中也是使用非常频繁的。先说说关于文件操作的流程, 要打开文件, 从而得到文件的一个句柄, 接着把这个句柄赋值给一个变量, 之后凭借句柄对文件开展操作, 也就是内容的增加、删除、修改、查询。最后必须关闭文件, 因为有打开就需要有关闭, 不然文件就会一直被占用。直到程序运行结束。文件的基本操作#按照上面所说的流程f open(demo.txt)#1.打开文件句柄赋值给fdata f.read()#2.对文件操作读取文件内容print(data)#打印文件f.close()#3.关闭文件#按照上面的流程就完成了对文件的基本操作打开文件模式此前, 我们运用打开文件的方式, 不存在可以选择打开模式的地方, 实际上默认已然运用了“只读模式”r, 于只读模式之中, 我们仅能够读取文件里的内容, 此外无法针对文件开展写入、追加等相关操作句号。那如果想要写入怎么办这里就要用到打开模式了。打开文件是模式有如下只读模式, 其为默认情况只写模式, 不可读, 当不存在文件时会创建, 若存在文件则删除原有内容并写入新内容追加模式, 可读, 不存在文件时创建, 存在时在原有内容基础上追加新内容。那么如何使用呢其实很简单下面写一个例子f open(demo.txt,w) f.write(test) f.close()#我们只需要在open的时候加上‘w’就可以对文件进行写入操作了想在同一时候进行读取操作又能够进行写入操作该如何去做呢, 打开的模式当中存在一个‘“”用来表示能够在一个文件里同时进行读取和写入这两项操作。r, 具备可读、可写并可追加文件的能力即可进行读操作、可进行写操作、还可进行追加操作, w, 实现写读功能, a, 与a的作用相同。此外, 存在一个标注为“U”的情况, 其意味着, 当从事读取操作时, 它能够把 \r\n这种形式, 自动转变为 \n。, “b”, 用来表示处理二进制文件, 要是我们所打开的文件并非文本, 而是其他类型的文件, 那么这种情况下就会用到这个模式。用于FTP发送上传文件的场景里头, 在linux环境下能够予以忽略, 而当处理二进制文件之际则需要进行标注。打开文件编码前面我们都没有使用到打开编码其实默认都是 “gbk”若是我们的文件, 属于utf - 8编码格式, 并且内容里有着中文, 那么读取之际, 不会出现报错, 能够正常读取。要是文件属于utf - 8编码格式, 内容里增添了中文, 在这个时候, 我们进行默认编码打卡就会出现报错, 情况如下这个时候后我们就要用到 对打开文件编码格式的修改f open(demo.txt,r, encodingutf-8)#加上encodingutf-8就不会出现报错或者中文乱码了大文件操作此前, 我们读取文件内容的方式, 皆是一次性地将全部内容予以读取, 如此这般进行操作, 倘若文件规模较小, 那尚可勉强为之, 要是文件的体量格外巨大, 所含内容极其繁多, 像达到1G、10G这类程度, 那就会致使我们的电脑陷入卡死状态, 甚而出现内存溢出的情况。对待大文件的操作, 实际上, 咱们能够每次仅仅读取一行, 读取完一行之后就在内存当中予以删除。f open(demo.txt,r, encodingutf-8)#只要使用这种循环读一条删一条内存中只保存一行数据forlineinf:print(line) f.close()#此方法针对大文件操作效果显著文件修改上文之中, 我们以追加模式将其打开, 随后进行写入文件的操作, 如此这般便能够把追加的内容写入至该文件里了。如果进行修改以及删除操作, 是否采用读写模式, 将内容读出, 经过内容的或者改变情形除去, 之后再度写入到文件里边, 便能够达成除去与修改的结果呢。然而, 我们才刚就大文件有所置喙, 假定存在一个达20G的文件, 显然你绝然无法将其整体予以读取, 于相应内容实施修改或者删除操作之后, 再行写入该文件, 此时你的程序却径直死机了, 这般状况该如何妥善处置呢?其实际上依旧是借用上面大文件操作的那种方式, 我们逐一条目去读取, 接着逐一条目完成写入。#思路就是一行一行读出源文件内容在一行一行写入新的文件中f open(demo.txt,r, encodingutf-8)#原文件f2 open(demo2.txt,a, encodingutf-8)#修改后保存的新文件forlineinf:#判断如果行中有出现zhangsan则修改成lisiifzhangsaninline: line line.replace(zhangsan,lisi)#判断如果行中有出现wangwu则跳过既这行不添加到新文件相当于删除了这行elifwangwuinline:continuef2.write(line)#最后修改过的内容一行一行写入到新的文件中print(line) f.close() f2.close()with 语句在前一部分我们已经讲过, 文件一旦被打开就需要将其关闭。然而我们时常会出现忘记关闭的情况, 那该如何去做呢?提供了一个 with语句使用方式#使用with语句当with代码块执行完毕时内部会自动关闭并释放文件资源。with open(demo.txt,r, encodingutf-8) as f:pass#在Python2.7以后with还同时支持操作多个文件with open(demo.txt,r, encodingutf-8) as f, open(demo2.txt,r, encodingutf-8) as f2:pass关于中的文件操作常用的方法就写这么多还有一些如tellseekseekable ... 等等之类的方法在大家实际使用的时候在具体了解吧。Csdn.tphep.cN/Article/details/43112.shtmlCsdn.tphep.cN/Article/details/81857.shtmlCsdn.tphep.cN/Article/details/08893.shtmlCsdn.tphep.cN/Article/details/00727.shtmlCsdn.tphep.cN/Article/details/38461.shtmlCsdn.tphep.cN/Article/details/09891.shtmlCsdn.tphep.cN/Article/details/35514.shtmlCsdn.tphep.cN/Article/details/54284.shtmlCsdn.tphep.cN/Article/details/02949.shtmlCsdn.tphep.cN/Article/details/89286.shtmlCsdn.tphep.cN/Article/details/41725.shtmlCsdn.tphep.cN/Article/details/34128.shtmlCsdn.tphep.cN/Article/details/65629.shtmlCsdn.tphep.cN/Article/details/90558.shtmlCsdn.tphep.cN/Article/details/44129.shtmlCsdn.tphep.cN/Article/details/92858.shtmlCsdn.tphep.cN/Article/details/90641.shtmlCsdn.tphep.cN/Article/details/02967.shtmlCsdn.tphep.cN/Article/details/11522.shtmlCsdn.tphep.cN/Article/details/07248.shtmlCsdn.tphep.cN/Article/details/67900.shtmlCsdn.tphep.cN/Article/details/52287.shtmlCsdn.tphep.cN/Article/details/48341.shtmlCsdn.tphep.cN/Article/details/39758.shtmlCsdn.tphep.cN/Article/details/91693.shtmlCsdn.tphep.cN/Article/details/06955.shtmlCsdn.tphep.cN/Article/details/00280.shtmlCsdn.tphep.cN/Article/details/56214.shtmlCsdn.tphep.cN/Article/details/18018.shtmlCsdn.tphep.cN/Article/details/99114.shtmlCsdn.tphep.cN/Article/details/37970.shtmlCsdn.tphep.cN/Article/details/05497.shtmlCsdn.tphep.cN/Article/details/97012.shtmlCsdn.tphep.cN/Article/details/09484.shtmlCsdn.tphep.cN/Article/details/96963.shtmlCsdn.tphep.cN/Article/details/62601.shtmlCsdn.tphep.cN/Article/details/69891.shtmlCsdn.tphep.cN/Article/details/62606.shtmlCsdn.tphep.cN/Article/details/91519.shtmlCsdn.tphep.cN/Article/details/19263.shtmlCsdn.tphep.cN/Article/details/12489.shtmlCsdn.tphep.cN/Article/details/43002.shtmlCsdn.tphep.cN/Article/details/07447.shtmlCsdn.tphep.cN/Article/details/14439.shtmlCsdn.tphep.cN/Article/details/63271.shtmlCsdn.tphep.cN/Article/details/50293.shtmlCsdn.tphep.cN/Article/details/15448.shtmlCsdn.tphep.cN/Article/details/21050.shtmlCsdn.tphep.cN/Article/details/65440.shtmlCsdn.tphep.cN/Article/details/10731.shtmlCsdn.tphep.cN/Article/details/67950.shtmlCsdn.tphep.cN/Article/details/68962.shtmlCsdn.tphep.cN/Article/details/91452.shtmlCsdn.tphep.cN/Article/details/55576.shtmlCsdn.tphep.cN/Article/details/92170.shtmlCsdn.tphep.cN/Article/details/41113.shtmlCsdn.tphep.cN/Article/details/60502.shtmlCsdn.tphep.cN/Article/details/66489.shtmlCsdn.tphep.cN/Article/details/51516.shtmlCsdn.tphep.cN/Article/details/94893.shtmlCsdn.tphep.cN/Article/details/31725.shtmlCsdn.tphep.cN/Article/details/18719.shtmlCsdn.tphep.cN/Article/details/38381.shtmlCsdn.tphep.cN/Article/details/51149.shtmlCsdn.tphep.cN/Article/details/32631.shtmlCsdn.tphep.cN/Article/details/12497.shtmlCsdn.tphep.cN/Article/details/59478.shtmlCsdn.tphep.cN/Article/details/67976.shtmlCsdn.tphep.cN/Article/details/85209.shtmlCsdn.tphep.cN/Article/details/99034.shtmlCsdn.tphep.cN/Article/details/12902.shtmlCsdn.tphep.cN/Article/details/25631.shtmlCsdn.tphep.cN/Article/details/93580.shtmlCsdn.tphep.cN/Article/details/25887.shtmlCsdn.tphep.cN/Article/details/28493.shtmlCsdn.tphep.cN/Article/details/20918.shtmlCsdn.tphep.cN/Article/details/27153.shtmlCsdn.tphep.cN/Article/details/14113.shtmlCsdn.tphep.cN/Article/details/49444.shtmlCsdn.tphep.cN/Article/details/25275.shtmlCsdn.tphep.cN/Article/details/73978.shtmlCsdn.tphep.cN/Article/details/23033.shtmlCsdn.tphep.cN/Article/details/11263.shtmlCsdn.tphep.cN/Article/details/70541.shtmlCsdn.tphep.cN/Article/details/20534.shtmlCsdn.tphep.cN/Article/details/88119.shtmlCsdn.tphep.cN/Article/details/71589.shtmlCsdn.tphep.cN/Article/details/46611.shtmlCsdn.tphep.cN/Article/details/34004.shtmlCsdn.tphep.cN/Article/details/14676.shtmlCsdn.tphep.cN/Article/details/67638.shtmlCsdn.tphep.cN/Article/details/29310.shtmlCsdn.tphep.cN/Article/details/18736.shtmlCsdn.tphep.cN/Article/details/28860.shtmlCsdn.tphep.cN/Article/details/96784.shtmlCsdn.tphep.cN/Article/details/52009.shtmlCsdn.tphep.cN/Article/details/66841.shtmlCsdn.tphep.cN/Article/details/64930.shtmlCsdn.tphep.cN/Article/details/69427.shtmlCsdn.tphep.cN/Article/details/78934.shtmlCsdn.tphep.cN/Article/details/80564.shtmlCsdn.tphep.cN/Article/details/53459.shtmlCsdn.tphep.cN/Article/details/47213.shtmlCsdn.tphep.cN/Article/details/94967.shtmlCsdn.tphep.cN/Article/details/89000.shtmlCsdn.tphep.cN/Article/details/13104.shtmlCsdn.tphep.cN/Article/details/56474.shtmlCsdn.tphep.cN/Article/details/23932.shtmlCsdn.tphep.cN/Article/details/81689.shtmlCsdn.tphep.cN/Article/details/31752.shtmlCsdn.tphep.cN/Article/details/88945.shtmlCsdn.tphep.cN/Article/details/85171.shtmlCsdn.tphep.cN/Article/details/35748.shtmlCsdn.tphep.cN/Article/details/68240.shtmlCsdn.tphep.cN/Article/details/50874.shtmlCsdn.tphep.cN/Article/details/03141.shtmlCsdn.tphep.cN/Article/details/00497.shtmlCsdn.tphep.cN/Article/details/58965.shtmlCsdn.tphep.cN/Article/details/71087.shtmlCsdn.tphep.cN/Article/details/62670.shtmlCsdn.tphep.cN/Article/details/83070.shtmlCsdn.tphep.cN/Article/details/63124.shtmlCsdn.tphep.cN/Article/details/99561.shtmlCsdn.tphep.cN/Article/details/64351.shtmlCsdn.tphep.cN/Article/details/55634.shtmlCsdn.tphep.cN/Article/details/51837.shtmlCsdn.tphep.cN/Article/details/54356.shtmlCsdn.tphep.cN/Article/details/39642.shtmlCsdn.tphep.cN/Article/details/17560.shtmlCsdn.tphep.cN/Article/details/62627.shtmlCsdn.tphep.cN/Article/details/92543.shtmlCsdn.tphep.cN/Article/details/29719.shtmlCsdn.tphep.cN/Article/details/75920.shtmlCsdn.tphep.cN/Article/details/86347.shtmlCsdn.tphep.cN/Article/details/41748.shtmlCsdn.tphep.cN/Article/details/08905.shtmlCsdn.tphep.cN/Article/details/91180.shtmlCsdn.tphep.cN/Article/details/76469.shtmlCsdn.tphep.cN/Article/details/51978.shtmlCsdn.tphep.cN/Article/details/65734.shtmlCsdn.tphep.cN/Article/details/86871.shtmlCsdn.tphep.cN/Article/details/01801.shtmlCsdn.tphep.cN/Article/details/78672.shtmlCsdn.tphep.cN/Article/details/14202.shtmlCsdn.tphep.cN/Article/details/37546.shtmlCsdn.tphep.cN/Article/details/07723.shtmlCsdn.tphep.cN/Article/details/60984.shtmlCsdn.tphep.cN/Article/details/27233.shtmlCsdn.tphep.cN/Article/details/68396.shtmlCsdn.tphep.cN/Article/details/00239.shtmlCsdn.tphep.cN/Article/details/55005.shtmlCsdn.tphep.cN/Article/details/85746.shtmlCsdn.tphep.cN/Article/details/77192.shtmlCsdn.tphep.cN/Article/details/18687.shtmlCsdn.tphep.cN/Article/details/49661.shtmlCsdn.tphep.cN/Article/details/20248.shtmlCsdn.tphep.cN/Article/details/55285.shtmlCsdn.tphep.cN/Article/details/32535.shtmlCsdn.tphep.cN/Article/details/67332.shtmlCsdn.tphep.cN/Article/details/72794.shtmlCsdn.tphep.cN/Article/details/79053.shtmlCsdn.tphep.cN/Article/details/11915.shtmlCsdn.tphep.cN/Article/details/54095.shtmlCsdn.tphep.cN/Article/details/74346.shtmlCsdn.tphep.cN/Article/details/19162.shtmlCsdn.tphep.cN/Article/details/84134.shtmlCsdn.tphep.cN/Article/details/62145.shtmlCsdn.tphep.cN/Article/details/78908.shtmlCsdn.tphep.cN/Article/details/56788.shtmlCsdn.tphep.cN/Article/details/20372.shtmlCsdn.tphep.cN/Article/details/35250.shtmlCsdn.tphep.cN/Article/details/47123.shtmlCsdn.tphep.cN/Article/details/95740.shtmlCsdn.tphep.cN/Article/details/39983.shtmlCsdn.tphep.cN/Article/details/98381.shtmlCsdn.tphep.cN/Article/details/74904.shtmlCsdn.tphep.cN/Article/details/03027.shtmlCsdn.tphep.cN/Article/details/39045.shtmlCsdn.tphep.cN/Article/details/04590.shtmlCsdn.tphep.cN/Article/details/52637.shtmlCsdn.tphep.cN/Article/details/90657.shtmlCsdn.tphep.cN/Article/details/68087.shtmlCsdn.tphep.cN/Article/details/35765.shtmlCsdn.tphep.cN/Article/details/44047.shtmlCsdn.tphep.cN/Article/details/46323.shtmlCsdn.tphep.cN/Article/details/44103.shtmlCsdn.tphep.cN/Article/details/32881.shtmlCsdn.tphep.cN/Article/details/60296.shtmlCsdn.tphep.cN/Article/details/83345.shtmlCsdn.tphep.cN/Article/details/28322.shtmlCsdn.tphep.cN/Article/details/37737.shtmlCsdn.tphep.cN/Article/details/23548.shtmlCsdn.tphep.cN/Article/details/96034.shtmlCsdn.tphep.cN/Article/details/87098.shtmlCsdn.tphep.cN/Article/details/70778.shtmlCsdn.tphep.cN/Article/details/87401.shtmlCsdn.tphep.cN/Article/details/91103.shtmlCsdn.tphep.cN/Article/details/87352.shtmlCsdn.tphep.cN/Article/details/70174.shtmlCsdn.tphep.cN/Article/details/54279.shtmlCsdn.tphep.cN/Article/details/96482.shtmlCsdn.tphep.cN/Article/details/46263.shtmlCsdn.tphep.cN/Article/details/57393.shtmlCsdn.tphep.cN/Article/details/59120.shtmlCsdn.tphep.cN/Article/details/59982.shtmlCsdn.tphep.cN/Article/details/10212.shtmlCsdn.tphep.cN/Article/details/21788.shtmlCsdn.tphep.cN/Article/details/23566.shtmlCsdn.tphep.cN/Article/details/60393.shtmlCsdn.tphep.cN/Article/details/72434.shtmlCsdn.tphep.cN/Article/details/90288.shtmlCsdn.tphep.cN/Article/details/27283.shtmlCsdn.tphep.cN/Article/details/21268.shtmlCsdn.tphep.cN/Article/details/93525.shtmlCsdn.tphep.cN/Article/details/73297.shtmlCsdn.tphep.cN/Article/details/10867.shtmlCsdn.tphep.cN/Article/details/69736.shtmlCsdn.tphep.cN/Article/details/90609.shtmlCsdn.tphep.cN/Article/details/38517.shtmlCsdn.tphep.cN/Article/details/15019.shtmlCsdn.tphep.cN/Article/details/04554.shtmlCsdn.tphep.cN/Article/details/99265.shtmlCsdn.tphep.cN/Article/details/00602.shtmlCsdn.tphep.cN/Article/details/46365.shtmlCsdn.tphep.cN/Article/details/22817.shtmlCsdn.tphep.cN/Article/details/97017.shtmlCsdn.tphep.cN/Article/details/84079.shtmlCsdn.tphep.cN/Article/details/95709.shtmlCsdn.tphep.cN/Article/details/08662.shtmlCsdn.tphep.cN/Article/details/78580.shtmlCsdn.tphep.cN/Article/details/48690.shtmlCsdn.tphep.cN/Article/details/20528.shtmlCsdn.tphep.cN/Article/details/84596.shtmlCsdn.tphep.cN/Article/details/05852.shtmlCsdn.tphep.cN/Article/details/79780.shtmlCsdn.tphep.cN/Article/details/76256.shtmlCsdn.tphep.cN/Article/details/71845.shtmlCsdn.tphep.cN/Article/details/86288.shtmlCsdn.tphep.cN/Article/details/00746.shtmlCsdn.tphep.cN/Article/details/91288.shtmlCsdn.tphep.cN/Article/details/63683.shtmlCsdn.tphep.cN/Article/details/30122.shtmlCsdn.tphep.cN/Article/details/85511.shtmlCsdn.tphep.cN/Article/details/69654.shtmlCsdn.tphep.cN/Article/details/72333.shtmlCsdn.tphep.cN/Article/details/48655.shtmlCsdn.tphep.cN/Article/details/37458.shtmlCsdn.tphep.cN/Article/details/71778.shtmlCsdn.tphep.cN/Article/details/36913.shtmlCsdn.tphep.cN/Article/details/57473.shtmlCsdn.tphep.cN/Article/details/53526.shtmlCsdn.tphep.cN/Article/details/38136.shtmlCsdn.tphep.cN/Article/details/08636.shtmlCsdn.tphep.cN/Article/details/34343.shtmlCsdn.tphep.cN/Article/details/95149.shtmlCsdn.tphep.cN/Article/details/69368.shtmlCsdn.tphep.cN/Article/details/04355.shtmlCsdn.tphep.cN/Article/details/25046.shtmlCsdn.tphep.cN/Article/details/10838.shtmlCsdn.tphep.cN/Article/details/71689.shtmlCsdn.tphep.cN/Article/details/62334.shtmlCsdn.tphep.cN/Article/details/89081.shtmlCsdn.tphep.cN/Article/details/17694.shtmlCsdn.tphep.cN/Article/details/25322.shtmlCsdn.tphep.cN/Article/details/83995.shtmlCsdn.tphep.cN/Article/details/16017.shtmlCsdn.tphep.cN/Article/details/93038.shtmlCsdn.tphep.cN/Article/details/65272.shtmlCsdn.tphep.cN/Article/details/48806.shtmlCsdn.tphep.cN/Article/details/81820.shtmlCsdn.tphep.cN/Article/details/40933.shtmlCsdn.tphep.cN/Article/details/84613.shtmlCsdn.tphep.cN/Article/details/96769.shtmlCsdn.tphep.cN/Article/details/76971.shtmlCsdn.tphep.cN/Article/details/14159.shtmlCsdn.tphep.cN/Article/details/99568.shtmlCsdn.tphep.cN/Article/details/53673.shtmlCsdn.tphep.cN/Article/details/99180.shtmlCsdn.tphep.cN/Article/details/68647.shtmlCsdn.tphep.cN/Article/details/80533.shtmlCsdn.tphep.cN/Article/details/01959.shtmlCsdn.tphep.cN/Article/details/53456.shtmlCsdn.tphep.cN/Article/details/61419.shtmlCsdn.tphep.cN/Article/details/98433.shtmlCsdn.tphep.cN/Article/details/96432.shtmlCsdn.tphep.cN/Article/details/58176.shtmlCsdn.tphep.cN/Article/details/09604.shtmlCsdn.tphep.cN/Article/details/18008.shtmlCsdn.tphep.cN/Article/details/50416.shtmlCsdn.tphep.cN/Article/details/82070.shtmlCsdn.tphep.cN/Article/details/34265.shtmlCsdn.tphep.cN/Article/details/18606.shtmlCsdn.tphep.cN/Article/details/99728.shtmlCsdn.tphep.cN/Article/details/71340.shtmlCsdn.tphep.cN/Article/details/30880.shtmlCsdn.tphep.cN/Article/details/58238.shtmlCsdn.tphep.cN/Article/details/45282.shtmlCsdn.tphep.cN/Article/details/42823.shtmlCsdn.tphep.cN/Article/details/48225.shtmlCsdn.tphep.cN/Article/details/85015.shtmlCsdn.tphep.cN/Article/details/97270.shtmlCsdn.tphep.cN/Article/details/91363.shtmlCsdn.tphep.cN/Article/details/11204.shtmlCsdn.tphep.cN/Article/details/03287.shtmlCsdn.tphep.cN/Article/details/11239.shtmlCsdn.tphep.cN/Article/details/64010.shtmlCsdn.tphep.cN/Article/details/46675.shtmlCsdn.tphep.cN/Article/details/80889.shtmlCsdn.tphep.cN/Article/details/53407.shtmlCsdn.tphep.cN/Article/details/62517.shtmlCsdn.tphep.cN/Article/details/46618.shtmlCsdn.tphep.cN/Article/details/19270.shtmlCsdn.tphep.cN/Article/details/62173.shtmlCsdn.tphep.cN/Article/details/52948.shtmlCsdn.tphep.cN/Article/details/51945.shtmlCsdn.tphep.cN/Article/details/37573.shtmlCsdn.tphep.cN/Article/details/03719.shtmlCsdn.tphep.cN/Article/details/58145.shtmlCsdn.tphep.cN/Article/details/99646.shtmlCsdn.tphep.cN/Article/details/73366.shtmlCsdn.tphep.cN/Article/details/62091.shtmlCsdn.tphep.cN/Article/details/85355.shtmlCsdn.tphep.cN/Article/details/32532.shtmlCsdn.tphep.cN/Article/details/57299.shtmlCsdn.tphep.cN/Article/details/40419.shtmlCsdn.tphep.cN/Article/details/00802.shtmlCsdn.tphep.cN/Article/details/13226.shtmlCsdn.tphep.cN/Article/details/67351.shtmlCsdn.tphep.cN/Article/details/78633.shtmlCsdn.tphep.cN/Article/details/95266.shtmlCsdn.tphep.cN/Article/details/30494.shtmlCsdn.tphep.cN/Article/details/81765.shtmlCsdn.tphep.cN/Article/details/27631.shtmlCsdn.tphep.cN/Article/details/04742.shtmlCsdn.tphep.cN/Article/details/12985.shtmlCsdn.tphep.cN/Article/details/58507.shtmlCsdn.tphep.cN/Article/details/92533.shtmlCsdn.tphep.cN/Article/details/26460.shtmlCsdn.tphep.cN/Article/details/37466.shtmlCsdn.tphep.cN/Article/details/49538.shtmlCsdn.tphep.cN/Article/details/27064.shtmlCsdn.tphep.cN/Article/details/18633.shtmlCsdn.tphep.cN/Article/details/53723.shtmlCsdn.tphep.cN/Article/details/58446.shtmlCsdn.tphep.cN/Article/details/06974.shtmlCsdn.tphep.cN/Article/details/32176.shtmlCsdn.tphep.cN/Article/details/73345.shtmlCsdn.tphep.cN/Article/details/30169.shtmlCsdn.tphep.cN/Article/details/39624.shtmlCsdn.tphep.cN/Article/details/73496.shtmlCsdn.tphep.cN/Article/details/78270.shtmlCsdn.tphep.cN/Article/details/49773.shtmlCsdn.tphep.cN/Article/details/52765.shtmlCsdn.tphep.cN/Article/details/90356.shtmlCsdn.tphep.cN/Article/details/14571.shtmlCsdn.tphep.cN/Article/details/83132.shtmlCsdn.tphep.cN/Article/details/00635.shtmlCsdn.tphep.cN/Article/details/25828.shtmlCsdn.tphep.cN/Article/details/07561.shtmlCsdn.tphep.cN/Article/details/41184.shtmlCsdn.tphep.cN/Article/details/51773.shtmlCsdn.tphep.cN/Article/details/79428.shtmlCsdn.tphep.cN/Article/details/85788.shtmlCsdn.tphep.cN/Article/details/85332.shtmlCsdn.tphep.cN/Article/details/18794.shtml