What is the most pythonic way to open a file?

我怕爱的太早我们不能终老 提交于 2019-11-30 23:11:11
with open('file path', 'a') as f:
   data = f.read()
   #do something with data

or

f = open(os.path.join(dir,str1),'r')
f.close()
file = open('newfile.txt', 'r') 

for line in file:

      print line

OR

lines = [line for line in open('filename')]

If file is huge, read() is definitively bad idea, as it loads (without size parameter), whole file into memory.

If your file is huge this will cause latency !

So, i don't recommend read() or readlines()

There are many ways to open files in python which goes to say that there really isn't really a pythonic way of doing it. It all just boils down to which method you see are most connivence, especially in regards to what you're actually trying to do with the file once its open.

Most users use the IDLE GUI "click" to open files because it allows them to view the current file and also make some alterations if there's a need for such.

Others might just rely on the command lines to perform the task, at the cost of not being able to do anything other than opening the file.

Using Command Lines:

  1. % python myfile.py

note that in order for this to work you need to make sure the system is "looking" into the directory where your file is storied. Using the 'cd' is useful to finding you route there.

  1. % python import myfile myfile.title

This method is known as the object.attribute method of opening files. This method is useful when the file you're opening has an operation that you would like to implement.

There are more ways than what's been stated above, be sure to consult the pyDocs for further details.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!