|
Practical polymorphism in action
Polymorphism is the ability of a piece of common code to process a piece of data in different ways depending on its type. It's a great facility, talked about a lot in theory and on courses ... but then what about its practical use? Here's a very simple little example from last week, showing how a file, another process on the computer you're using, and even a remote web page can be read in as data through the same (polymorphic) code with python's readlines method(s).
# Three ALTERNATIVE opens - just use the one you need
# from another process
from os import *
fh = popen("df -k")
# from a remote URL
import urllib
fh = urllib.urlopen("http://www.sheepbingo.co.uk")
# from a local file ...
fh = open("localfile.txt")
# ... whichever way you open your STREAM, you can readlines it!
for info in fh.readlines():
print info,(written 2006-12-04 08:00:14)
Associated topics are indexed under Y112 - Python - Objects - IntermediateY301 - Python - Class Interaction - an example
Some other Articles
Perl - a list or a hash?Realistic on line shoot'em upCSL, KISS and RTFMKISS - one action per statement please - PerlPractical polymorphism in actionGeorge Hotel and Well House Manor, MelkshamBreaking a loop - Ruby and other languagesProducts that our customers want more of1st, 2nd, 3rd revisited in RubyIt's the 1st, not the 1nd 1rd or 1th.
|
1893 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).
|
|