Re: [Tutor] using help

2005-11-28 Thread Boyan R.
On Mon, 28 Nov 2005 14:56:38 -0600, Jason Massey wrote: > Boyan, > > A listing of all the built-in exceptions can be found at: > > http://docs.python.org/lib/module-exceptions.html > > > A description of this, and the other built-in functions, is at: > > http://docs.python.org/lib/built-in-fu

Re: [Tutor] using help

2005-11-28 Thread Jason Massey
Boyan, A listing of all the built-in exceptions can be found at: http://docs.python.org/lib/module-exceptions.html And is this what you're looking for? >>> a='123' >>> int(a) 123 >>> A description of this, and the other built-in functions, is at: http://docs.python.org/lib/built-in-funcs.ht

[Tutor] using help

2005-11-28 Thread Boyan R.
How can I see all error keywords for using Try..Except, like EOFError, ValueError etc by typing help('something') ? Also, what to type to see string handling commands ? like "int" [number = int(raw_input("Enter a number: "))] What's python equivalent for basic "val" command ? _