【Python 基础]】将文本文件内容读入到 数组的例子(改进版)

返回: Python基础 索引页


假如文件的内容如下:

复制代码
###
[Action --1]

RDMA support
IPOIB support
RDSOIB support

###<<<

###
[Action --2]

ORA-07445
pevm_icd_call_common
ORA 7445 [pevm_icd_call_common]
oracle.sysman.oui.patch.PatchException: java.io.FileNotFoundException:
ContentsXML/oui-patch.xml (Permission denied)

opatch logs

###<<<
复制代码


想要读入数组后,形成如下结构:

['[Action --1]', 0], ['RDMA support', 'IPOIB support', 'RDSOIB support'],
['[Action --2]', 0], ['ORA-07445', 'pevm_icd_call_common', 'ORA 7445 [pevm_icd_call_common]', 'oracle.sysman.oui.patch.PatchException: java.io.FileNotFoundException:', 'ContentsXML/oui-patch.xml (Permission denied)', 'opatch logs']


程序代码如下:

复制代码
tmpFactor= []
contentsList = []
actionList = []

myfile = open('AI.txt')
line = myfile.readline()
iti = 0
while line:
    current_line = line.strip()
    if ( current_line == "###" ) :  # read the next line when encounter "###"
        line = myfile.readline()
        current_line = line.strip()
        ## <<<<<<<<<< first line , action plan name
        tmpFactor.append( current_line )
        tmpFactor.append( 0 ) # the counter for later summary
        ## <<<<<<<<<<< skip to the line next to [action]
        line = myfile.readline()
    elif ( current_line == "###<<<" )  : # the current group finished
        ##print ( "got to the end" )
        actionList.append(tmpFactor)
        actionList.append(contentsList)
        ##print ( actionList )
        ##make search
        ## go to next item section
        tmpFactor= []
        contentsList = []
        line = myfile.readline()
        ##continue        
        ##break
    else:  #  got the real content to the list
        if ( current_line == '') :
            iti = 0
            ##print ( "null line" )
        else :
            iti = 1
            ##print ( "good line,append" + current_line )
            contentsList.append( current_line ) # append the real content
        line = myfile.readline()
        iti = 2  ## end of else content
    iti = 3 ## end of while content

myfile.close()

print ( actionList )
复制代码


运行结果如下:

[
['[Action --1]', 0], ['RDMA support', 'IPOIB support', 'RDSOIB support'],
['[Action --2]', 0], ['ORA-07445', 'pevm_icd_call_common', 'ORA 7445 [pevm_icd_call_common]', 'oracle.sysman.oui.patch.PatchException: java.io.FileNotFoundException:', 'ContentsXML/oui-patch.xml (Permission denied)', 'opatch logs']
]


返回: Python基础 索引页

posted @   健哥的数据花园  阅读(421)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 10年+ .NET Coder 心语 ── 封装的思维:从隐藏、稳定开始理解其本质意义
· 地球OL攻略 —— 某应届生求职总结
· 提示词工程——AI应用必不可少的技术
· Open-Sora 2.0 重磅开源!
· 周边上新:园子的第一款马克杯温暖上架
历史上的今天:
2021-04-09 [Oracle 工程师手记] EM Express 上的备份完成时间和RMAN表示的时间不一致
2021-04-09 [Oracle 工程师手记] 记一次 MVIEW 刷新慢的分析
2021-04-09 [Oracle工程师手记] 因为意外发生 failover 之后,如何尽量地重用原来的主库
2021-04-09 [Oracle工程师手记] 目前未被使用的块中包含坏块的对应方法
2021-04-09 [Oracle工程师手记]如何查找一个隐含参数的值
2021-04-09 [Oracle工程师手记]增量备份的BCT文件限制
2021-04-09 [Oracle工程师手记]如何收集 10046 trace
点击右上角即可分享
微信分享提示