【Python 基础]】将文本文件内容读入到 数组的例子(改进版)
2022/4/9 14:19:34
本文主要是介绍【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基础 索引页
这篇关于【Python 基础]】将文本文件内容读入到 数组的例子(改进版)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-21Python编程基础教程
- 2024-11-20Python编程基础与实践
- 2024-11-20Python编程基础与高级应用
- 2024-11-19Python 基础编程教程
- 2024-11-19Python基础入门教程
- 2024-11-17在FastAPI项目中添加一个生产级别的数据库——本地环境搭建指南
- 2024-11-16`PyMuPDF4LLM`:提取PDF数据的神器
- 2024-11-16四种数据科学Web界面框架快速对比:Rio、Reflex、Streamlit和Plotly Dash
- 2024-11-14获取参数学习:Python编程入门教程
- 2024-11-14Python编程基础入门