Get filename using filefialog.askfilename
Tue, 07 May 2013 13:47:14 -0700 Post Comments
If you're using the interpreter, you can type this command:
>>> help(file)
And it will display documentation for using objects of that type.
You can also use this command:
>>> dir(file)
And it will display all the members and methods that the object provides.
--
John Gordon A is for Amy, who fell down the stairs
gordon******* B is for Basil, assaulted by bears
-- Edward Gorey, "The Gashlycrumb Tinies"
>>> help(file)
And it will display documentation for using objects of that type.
You can also use this command:
>>> dir(file)
And it will display all the members and methods that the object provides.
--
John Gordon A is for Amy, who fell down the stairs
gordon******* B is for Basil, assaulted by bears
-- Edward Gorey, "The Gashlycrumb Tinies"
