21f9
| |||
|
Saving a lambda in a variable and other tricks
Object Oriented Python example from a Well House Consultants training course
4c8
More on Object Oriented Python [link] Source code: longer Module: Y106
"""In Python everything (even code) is held in names and can be redefined.""" def gimme (top): for y in range(top+1): print "..", yield y for x in gimme(50): print x, def rem (what): return what % 7 # The following test is for training purposes only! if 6 > 7: wanadoo = lambda p1:p1%7 else: wanadoo = lambda p1:p1%9 # Override a function with an integer print rem rem = 87 print rem # Call a method in a variable; the method is selected # by the conditional statement earlier on numbers = [10,50,60,70,90,120] got = map(wanadoo,numbers) print got Learn about this subject
This module and example are covered on the following public courses:
* Learning to program in Python * Python Programming * Intermediate Python Also available on on site courses for larger groups Books covering this topic
Yes. We have over 700 books in our library. Books
covering Python are listed here and when you've selected a
relevant book we'll link you on to Amazon to order.
Other Examples
This example comes from our "Object Oriented Python" training module. You'll find a description of the topic and some
other closely related examples on the "Object Oriented Python" module index page.
Full description of the source code
The complete module that describes this example
is available for download under our Open Training Notes License from
our sister site http://www.training-notes.co.uk.
Other resources
• Our Solutions centre provides a number of longer technical articles.
• Our Opentalk forum archive provides a question and answer centre. • The Horse's mouth provides a daily tip or thought. • Further resources are available via the resources centre. • All of these resources can be searched through through our search engine • And there's a global index here. Purpose of this website
This is a sample program, class demonstration or answer from a
training course. It's main purpose
is to provide an after-course service to customers who have attended our
public private or
on site courses, but the examples are made
generally available under conditions described below.
Web site author
Conditions of use
Past attendees on our training courses are welcome to use individual
examples in the course of their programming, but must check
the examples they use to ensure that they are suitable for their
job. Remember that some of our examples show you how not to do
things - check in your notes. Well House Consultants take no responsibility
for the suitability of these example programs to customer's needs.
This program is copyright Well House Consultants Ltd, but is part of a module released under our Open Training Notes license. You may use it for your own training needs provided that you adhere to the conditions laid down. In summary, these require you (a) to make no charge for the training and (b) to include a full copy of our copyright statement with the material your distribute. Any of our images within this code may NOT be reused on a public URL without our prior permission. For Bona Fide personal use, we will often grant you permission provided that you provide a link back. Commercial use on a website will incur a license fee for each image used - details on request. | |||
PH: 01144 1225 708225 • FAX: 01144 1225 899360 • EMAIL: info@wellho.net • WEB: http://www.wellho.net • SKYPE: wellho PAGE: http://www.wellho.net/resources/ex.php4 • PAGE BUILT: Sat Apr 13 08:12:34 2013 • BUILD SYSTEM: wizard | |||