|
Python - formatting objects
If you're going to be printing out objects from within Python, simply provide an __str__ method in the class and it will do all the work for you. Indeed - why not create classes and objects for straightforward objects such as people's names ... then you can call up the formatter for them very easily and have it defined just once in your code.
class person:
def __init__(this,name):
this.name=name
def __str__(this):
return "%-12s" % this.name
people = ["John","George","Paul","Esmerelda","Jo","Petal"]
plist = []
for current in people:
plist.append(person(current))
for j in range(len(plist)):
print plist[j],j
running that:
Dorothy:py08 grahamellis$ python names
John 0
George 1
Paul 2
Esmerelda 3
Jo 4
Petal 5
Dorothy:py08 grahamellis$
(written 2008-01-24 17:26:34)
Associated topics are indexed under Y108 - Python - String HandlingY112 - Python - Objects - Intermediate
Some other Articles
Evening drive across the roof of WiltshireTerms and Conditions - Hotel, England - plain EnglishFlipping images on your web pageDownloading data for use in Excel (from PHP / MySQL)Python - formatting objectsPictures you can use - for free - from our libraryKeeping staff up to date on hotel room statusAutovivification - the magic appearance of variables in PerlPerl, PHP or Python? No - Perl AND PHP AND Python!Summer Ball at Bowood - Saturday 12th July 2008
|
2259 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, 39, 40, 41, 42, 43, 44, 45, 46 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).
|
|