What's the difference between file and open in Python? When should I use which one? (Say I'm in 2.5)
|
|
|
|
|
|
|
You should always use As the documentation states:
Also, python 3.0 will have |
||
|
|
|
|
Two reasons: The python philosophy of "There ought to be one way to do it" and
In python 3.0 |
|||
|
|
|
|
'file' is a type, like an int or a list. 'open' is a function for opening files, and will return a 'file' object. This is an example of when you should use open:
This is an example of when you should use file:
As you can see, there's a good reason for both to exist, and a clear use-case for both. |
||
|
|
|
|
Functionally, the two are the same;
The reason is that in future versions they is not guaranteed to be the same ( |
|||
|
|
|
Only ever use open() for opening files. file() is actually being removed in 3.0, and it's deprecated at the moment. They've had a sort of strange relationship, but file() is going now, so there's no need to worry anymore. The following is from the Python 2.6 docs. [bracket stuff] added by me.
|
||
|
|
|
|
According to Mr Van Rossum, although open() is currently an alias for file() you should use open() because this might change in the future. |
||
|
