Newbie question:
Let's say I open a new file for writing in a certain path. How do I
get that path back?
Example:
'/some/path/file.ext'
Does some_function(f ) already exist? And if not, how would I define
it?
-- Andrew
Let's say I open a new file for writing in a certain path. How do I
get that path back?
Example:
>>f = open('/some/path/file.ext')
>>some_function (f)
>>some_function (f)
Does some_function(f ) already exist? And if not, how would I define
it?
-- Andrew
Comment