Re: Newbie question about method options

2009-06-17 Thread Scott David Daniels
Dave Angel wrote: python-newbie113 wrote: I am new to python and have a question about using methods. Here is the link i am looking at: http://www.pythonware.com/library/tkinter/introduction/x2102-methods.htm If i use, create_arc(bbox, options) => id what is id? and how do i find the parameter

Re: Newbie question about method options

2009-06-17 Thread Dave Angel
python-newbie113 wrote: I am new to python and have a question about using methods. Here is the link i am looking at: http://www.pythonware.com/library/tkinter/introduction/x2102-methods.htm If i use, create_arc(bbox, options) => id what is id? and how do i find the parameter list representing

Re: Newbie question about method options

2009-06-16 Thread Tim Harig
On 2009-06-17, python-newbie113 wrote: > If i use, create_arc(bbox, options) => id > what is id? and how do i find the parameter list representing options? I am not familiar with tkinker; but, the expression is just showing a function prototype. The function part should be self-explanitory. Jud

Newbie question about method options

2009-06-16 Thread python-newbie113
I am new to python and have a question about using methods. Here is the link i am looking at: http://www.pythonware.com/library/tkinter/introduction/x2102-methods.htm If i use, create_arc(bbox, options) => id what is id? and how do i find the parameter list representing options? Thanks for help