Training, Open Source computer languages

PerlPHPPythonMySQLhttpd / TomcatTclRubyJavaC and C++LinuxCSS

Search our site for:
Home Accessibility Courses Diary The Mouth Forum Resources Site Map About Us Contact
Trying things in Python
Are you used to writing long sections of code to validate user input? Perhaps you are, or perhaps you have shortened such code over the years using Regular Expressions where you can specify a pattern to be matched. One regular expression can replace 30 lines of other code.

But in Python, Java and some other languages there's an even more elegant alternative in some circumstances - exceptions. The idea is that you try to perform the action you require on your input data rather than 100% validating it first. If the action works, great and if it fails you catch the exception and handle the error condition in that block.

Like an example? Here's a piece of Python code to read an integer from the program's user, and to keep re-prompting if the user enters a value that cannot be treated as a legitimate integer.

while 1:
  val = raw_input("give an integer ... ")
  try:
    ival = int(val)
    break
  except:
    print "an integer is a WHOLE NUMBER! "
print ival

(written 2007-06-18 07:14:29)

 
Associated topics are indexed under
Y109 - Python - Exceptions

Back to
Outputting numbers as words - MySQL with Perl or PHP
Previous and next
or
Horse's mouth home
Forward to
What proportion of our web traffic is robots?

Some other Articles
Fancy going to Glastonbury?
End of File on a Java BufferedReader
The kind spirit of Melksham
What proportion of our web traffic is robots?
Trying things in Python
Outputting numbers as words - MySQL with Perl or PHP
A review of a week and a trip to Brugge
Horses of Brugge
Bathtub example
Sur le Continent
1637 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 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: 01144 1225 708225 • FAX: 01144 1225 707126 • EMAIL: info@wellho.net • WEB: http://www.wellho.net • SKYPE: wellho