Training, Open Source computer languages

PerlPythonMySQLTclRubyC & C++LuaJavaTomcatPHPhttpdLinux

Search our site for:
Home Accessibility Courses Diary The Mouth Forum Resources Site Map About Us Contact
Exceptions in Python

Rather than having to check ahead of time for every possible error, Python provides an exception handling capability too. Simply try to perform you action, and define what's to be done in an except block if the action you want can't be completed.

Here's an example in which we (try to) read an integer value from the user. If our user types a value that's not an integer, the exception is caught and the prompt repeated


def gnum(prompt):
while 1:
try:
rv = int(input(prompt+": "))
break
except:
print "eh?"
return rv

first = gnum("First number")
second = gnum("Second number")
print "Sum is "+str(first+second)


By the way - note the use of a named block of code (a function) to avoid the need to repeat code. Good programming practise!
(written 2005-07-17 10:05:54)

 
Associated topics are indexed under
Y109 - Python - Exceptions

Back to
Bridging to the customer requirement
Previous and next
or
Horse's mouth home
Forward to
Central London Courses - Perl, PHP, Python, Tcl, MySQL
Some other Articles
Feast or famine
Managing conflict and disappointment
Overloading of operators on standard objects in Python
Central London Courses - Perl, PHP, Python, Tcl, MySQL
Exceptions in Python
Bridging to the customer requirement
Getting the lighting right
A word of admiration for the London cabbie
A Strengthened City
What brings people to my web site?
1892 posts, page by page
Link to page ... 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38 at 50 posts per page


This is a page archived from The Horse's Mouth at http://www.wellho.net/horse/ - the diary and writings of Graham Ellis. Every attempt was made to provide current information at the time the page was written, but things do move forward in our business - new software releases, price changes, new techniques. Please check back via our main site for current courses, prices, versions, etc - any mention of a price in "The Horse's Mouth" cannot be taken as an offer to supply at that price.

Link to Ezine home page (for reading).
Link to Blogging home page (to add comments).

© WELL HOUSE CONSULTANTS LTD., 2008: Well House Manor • 48 Spa Road • Melksham, Wiltshire • United Kingdom • SN12 7NY
PH: 0800 043 8225 or 01225 708225 • FAX: 0845 8382 405 or 01225 707126 • EMAIL: info@wellho.net • WEB: http://www.wellho.net • SKYPE: wellho