funkyj wrote:

> What is the python idiom for callling a function like os.path.join()
> that takes a variable number of arguments when you currently have the
> arguements in a list variable?

     os.path.join(*list_of_args)

This is preferable to joining it yourself with
os.path.sep, because it will do the right thing
for the platform, which might not be so simple
in all cases.

--
Greg
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to