需要帮助在Python中打开,解析和关闭文件

时间:2014-06-26 21:21:39

标签: python

我是Python新手,我正在尝试学习如何解析文件,但我真的不知道从哪里开始。我需要在代码中找到一个特定的代码来确认提供给我的运行日志的功能。我只是需要帮助以下步骤:打开文件,解析文件,并在Python上关闭文件。如果您需要更多信息,请告诉我。我无法提供代码,但我可以尽量提供尽可能多的信息。谢谢!

2 个答案:

答案 0 :(得分:2)

打开文件:

myLog = open("path/to/my/log", 'r')

循环线:

for line in myLog:
    if foundMyThing(line):
        print "Found it!"

关闭它:

myLog.close()

阅读文档:

https://docs.python.org/2/tutorial/inputoutput.html#reading-and-writing-files

答案 1 :(得分:0)

with open("myfile.myextension",r) as f:
    for line in f:
        <parse each line>