The Python Cookbook
Beautiful plumage. O'Reilly, fortunately, has all kinds of experience with animals.
The Python Cookbook consists of seventeen chapters that contain between eight and twenty-six individual recipes. Chapters and recipes are roughly ordered by increasing complexity, length, and required background knowledge, starting with the simple "Swapping Values Without Using a Temporary Variable" and ending with the complete module "Parsing a String into a Date/Time Object Portably." The chapters are mostly organized by subject -- "Text," "Files," "Object-Orientated Programming," "User Interfaces" -- but also include "Python Shortcuts" and "System Administration." The background required varies: Whereas the chapter on "Text" starts off with Fred L. Drake reviewing the most basic string operations such as slicing and concatenation, Paul F. Dubois can only sketch the core concepts of lexing and parsing in "Programs About Programs."
This of course is a hallmark of all cookbooks, programming- or food-wise: Nobody will like everything, but everybody will like something. The worst fragmentation occurs, as expected, between examples of Python 1.5.2 and Python 2.2. Most recipes give preference to one version, and then point out how the problem could have been solved in the other version. This is more useful than the code that was written for all versions, because it gives a deeper insight into the changes that Python has gone through. The result is that after a few chapters, you start wondering why anybody in their right mind would keep using Python 1.5.2 instead of 2.2.* with its iterators, list comprehensions, new classes, and expanded module library.
Martelli and Ascher have done a good job balancing the different forms. Only one chapter struck me as lopsided: "System Administration", where ten of the sixteen recipes are Windows-only. Even though there is a good reason for this -- Microsoft's native administration tools just aren't like those provided with Unix -- the editors might want to rethink the selection of recipes in this chapter for future editions.
Generally helpful. The "Python Cookbook" has helped me in three ways. First, I found quite a lot of the examples themselves, especially those in the chapters "Python Shortcuts" and "Object-Orientated Programming" useful for everyday work. Second, reading more than 500 pages of peer-reviewed and well-commented code gave me a greater feeling for common idioms and constructs that are rare in this clarity in wild-type code. However, the book is strongest when more general principles of "Pythonic" programming are discussed, for example when Martelli demonstrates the merits of the "Look Before You Leap," "Easier to Ask Forgiveness than Permission," and "Homogenize Different Cases" methods.
My favorite recipe is Sebastien Keim's "Implementing a Ring Buffer," where an object carries a class deep in its bowels, and changes into this class in a rather cool Dr.-Jekyll-to-Mr.-Hyde transformation on the fly. The one recipe I found downright evil was "Sending HTML Mail," which should have been implemented as "Turning HTML Mail into Plain Text" with a note on how people who send HTML mail are going to be the first against the wall when the revolution comes. The best quote in the book comes from Tim Peters: "We read Knuth so you don't have to" -- Python's promise of programming power for the people, expressed in (dare I say it) a nutshell.
Conclusion:
I can recommend the "Python Cookbook" wholeheartedly to anyone who has passed into the advanced stage of language learning and is willing to actually sit down and work through the code. Anybody who is looking for a deeper understanding of Python, solutions to common coding problems, or starting points for their own projects will also profit. This book should have RedHat customers hammering at the gates of Raleigh, demanding the power of iterators and list comprehensions that their SuSE counterparts already enjoy by default; it demonstrates the superiority of Python 2.2.* over 1.5.2 in great detail.
Because of this, however, my guess is that 2.2.* will quickly replace 1.5.2, turning large parts of this book into historical footnotes in two years at the latest. This is no fault of O'Reilly's, but rather a current fact of Python life. The editors have done a good job of nailing the parrot, and until this Pythonic Norwegian Blue does the inevitable backflip, it should give its owner much pleasure.
You can purchase The Python Cookbook from bn.com. Slashdot welcomes readers' book reviews -- to see your own review here, read the book review guidelines, then visit the submission page.
The title "Python Cookbook" has gotta look weird to people bopping around Barnes & Noble who aren't in the know. :)
/*drunk.. fix later*/
And for those of you that can't get your hands on a python, the adder, asp, boa, cobra, diamondback, etc cookbooks are just as well packed with tasty recipes.
"Accept that some days you are the pigeon, and some days you are the statue." - David Brent, Wernham Hogg
And here I was hoping for the recipe for crunchy frog.
Kierthos
Mr. Hu is not a ninja.
Or, as Homer might add: "...mmm...python"
Athletic Scholarships to universities make as much sense as academic scholarships to sports teams.
Cornmeal Crusted Rattle Snake with Cactus-Corn Succotash
Recipe courtesy Joey Altman, Copyright 2001
2 1/2 pounds rattle snake, dead
1 cup buttermilk
1 cup cornmeal
1 cup flour
1 tablespoon salt
1 tablespoon chile powder
1 tablespoon garlic powder
1 tablespoon paprika
1 teaspoon cayenne pepper
1 teaspoon ground cumin
1 cup vegetable oil
Cactus-Corn Succotash, recipe follows
Using a sharp boning knife remove the meat from the snake by cutting down the back, just slightly to 1 side of the spine from the head to the rattle. Using the tip of the knife peel the meat from the ?rib cage?. Once you removed the 2 long strips of meat, lightly pound them with the back of the knife to tenderize them. Cut the strips of meat into 1-inch pieces and place in a bowl with the buttermilk. Mix to coat well. In a large bowl combine the cornmeal with the flour and the spices. Heat the oil in a large skillet on medium high heat. Dredge the snake pieces in the flour mixture and fry for 2 minutes or until golden brown and then transfer to a paper towel lined plate. Repeat until all the snake pieces are cooked. Serve with Cactus-Corn Succotash.
Cactus-corn succotash:
2 tablespoons olive oil
1 cactus pad, thorns scraped off, cut into small dice
2 ears corn, shucked
1 red onion, peeled, sliced in rings, grilled with olive oil and chopped in small dice
1 bunch scallions, grilled and chopped
1 chayote squash, sliced 1/4-inch thick, grilled with olive oil and chopped in small dice
1 tablespoon minced garlic
2 tablespoons minced jalape?o
1/2 cup diced red bell pepper
4 tablespoons butter
1 cup chicken stock
1 cup diced, peeled and seeded tomatoes
1/2 cup chopped cilantro
Salt and pepper
Grilling the vegetables first gives another great layer of flavor, however, it is not absolutely necessary. Just omit that step and cook the vegetable right in the pan. In a skillet on high heat saute the vegetables except the tomatoes in the olive oil for 2 minutes. Add the stock and butter and cook until mixture reduces by half. Add tomatoes and seasoning and serve with the warm snake ?nuggets? on top.
Yield: 4 servings
Prep Time: 30 minutes
Cook Time: 10 minutes
Difficulty: Medium
There are those out there that hate any language that allows spaces to effect it's running...
But Python just rocks. Throw pySQL, wxPython and Twisted into the mix, and you can have a full blown server with gui front-end that is just as stable as any other. I have a server that I wrote for wireless devices performing a few hundred SQL queries/changes and file writes per hour, and the speed is surprisingly very good for a language most people refer to as a 'script'.
Not to mention, the tab requirement makes reading the code so easy. You just know where functions begin and end without having to deal with {'s and }'s.
RedHat 7.3 infamously still ships with version 1.5.2 as the default, while SuSE 8.0 is hanging in there with version 2.2
Debian unstable also has 2.2 as the default python, although the stable release has 2.1. But with the huge number of packages which depend on it, it takes a while to migrate all of them. So testing still has 2.1.
Best Slashdot Co
I have to ask (given my Python illiteracy), does Python have built-ins for such an operation? Or is this just "how to implement an old trick" to "get your feet wet" with Python?
If my coffee is working correctly this morning, I'd assert that any language with an XOR-assign could accomplish this feat (with the added restriction that the vars be of the same size, or operations are performed iteratively on byte pointers).
Below is chapter 1 of my new C cookbook:
A ^= B;
B ^= A;
A ^= B;
Short chapter.
Pythons? I heard they taste like chicken!
[alk]
Some sort of snake, perhaps...
Best Slashdot Co
It would be very instructive to me to be able to see how the two languages handle each other's idioms. I have my brain wrapped around perl and when I try to think in python I get frustrated cause things I think should be simple aren't. Of course the reverse would be true if I knew python better (I guess).
At present I think my python programming is too formal, like someone who just learned say french trying to speak it and saying "To The beloved person who bore me onto this earth; please to be informed that I have translocated my corpus into the domicale that lies here" instead of just saying "mom, I'm home".
Some drink at the fountain of knowledge. Others just gargle.
a,b = b,a
The perfect companion piece to Bake a Snake.
daed si luap
Much more to the point, Red Hat 7.3 has 1.5.2 as "python", but has 2.1 (IIRC) as "python2". And Red Hat 8 has 2.2.1 as its "python". And, as you said, it is eminently possible to download and compile the latest version, though you do have to be careful that you link in 2.2.x as "python2" rather than "python" on Red Hat 7.3, or many of the system apps break (up2date comes to mind...).
This book should have RedHat customers hammering at the gates of Raleigh, demanding the power of iterators and list comprehensions that their SuSE counterparts already enjoy by default; it demonstrates the superiority of Python 2.2.* over 1.5.2 in great detail.
Of course, installing a new version of Python in RedHat is pretty painless, download the rpm and install it. You can find them here.
"It's a very tangled subsystem." --Windows kernel guru
I used to code in Python, and now I use Ruby in it's place. I've found it to be just as readable but more terse. It's also extremely consistent in the way that everything is an object. You can say things like
5.times {|n| puts n}
and all kinds of other crazy things. I'm not saying it's better than Python(not trying to start a flame war). I'm just saying to try it and see if you like it.
A musician without the RIAA, is like a fish without a bicycle.
Ah, fond memories. I remember showing that to a friend a while ago. He looked at it all cross-eyed, then ran off to see if it actually worked. Five minutes and a "holy s**t!" later, I knew he got it.
And there isn't anything wrong with implementing an old trick to get your feet wet in a new language. "Hello, world!" is a classic for a reason. When you are learning somethign new, any tie you can make with what you already know is helpful.
Thomas Galvin
No, he doesn't, although he could have worded it better.
QuArK is not implemented in Python.
Scripting is implemented in QuArK, using an embedded Python interpreter.
Smack!
Come on, you know it's not a Slashdot story without a ignorant jab at Red Hat! It's the new trendy thing to do!
Try this site.. it's basically a "phrasebook" that shows common tasks being done in both perl and python. It's a great introduction to the language, and it helps a lot in terms of getting the python-idiom-y ways to do lots of commonthings embedded into your head.
:))
It isn't *very* long, and doesn't go too deep, and the formatting's not great, but it's a quick read, and if it doesn't fit your needs there's always that book Snowbike recommended.
At present I think my python programming is too formal
The catch about the funkiness of python's syntax is not that it demands formalism; it's just that it demands you will do only one thing per line. It's kind of hard to get yourself thinking this way, and it's really irritating to write code this way (i never write python without pining for a ?: construct, a single-line version of "except", or a less-crippled lambda construct).
The thing is, though, that obeying python's rule basically comes down to seperating each expression into unnecessary variables, and mercilessly abstracting all those potentially-repeated 'common tasks' that somehow always seem to wind up taking five lines in python into functions. However, i find when i write perl, most of the time i spend revising code is spent going back and doing the above two things-- splitting overly-complex expressions into subvariables, pulling out bits of code and making them subexpressions. Python just forces you to do these things ahead of time, and you benefit greatly in the long run. (Whether that's worth all the irritation, though, i don't know
Irritable, left-wing and possibly humorous bumper stickers and t-shirts
Yes, it is: look here
Or $24.50 from www.bookpool.com, which is almost always better than other online bookstores, although I'm not sure how it does once shipping is factored in.
Get it from Amazon for [$3.99 cheaper]
And fund enforcement of a patent that should never have been granted. If you want to preserve balance in the Force, you have to give to EFF every time you give to a company that employs "evil" practices with respect to statutory monopolies. That's why I don't buy more than $65 a year from Disney, Time Warner, Universal, or the other big nine copyright companies, and that's also why I don't buy from Amazon or use Unisys products.
Will I retire or break 10K?
No no he's not dead, he's, he's restin'! Remarkable bird, the Norwegian Blue, idn'it, ay? Beautiful plumage!
I believe swingkid may be referring to the fact that if a and b are aliased to the same location in memory, the "trick" will go wrong (zeroing the value).
But why would you swap something with itself?
It would be almost impossible to achieve the aliasing in C, the only ways I can think of are:
1) swap(a,a);
2) union {int a; int b;} u;
3) #define b a
[or anything similar, i.e. int* b; b= swap(a,*b);]
I would say that if you are swapping something with itself, you have a problem with your algorithm.
The parens aren't necessary. They are in Perl5, however.
The author of this article doesn't mention it, but many Python programmers are upset with the rapid changes in the language, and it is very contrary to Python's history and philosophy. It looks like for now though, Python is slowing back down after implementing a new system of object orientation that really implements each variable/function/whatnot as an object. 2.2, hopefully, is here to stay for a while.
-- Ken Kinder ken@_nospam_kenkinder.com http://kenkinder.com/
Yeah, like the guy who drew Tux, whatshisname..
Escher was the first MC and Giger invented the HR department.
In my own experience, I've experienced the opposite. I was pretty good at procedural programming, but the OO stuff always seemed rather intimidating.
Then a friend twisted my arm and made me learn Python, and it wasn't necessarily that Python does OO well, but that it makes it really quick and easy to experiment. Doing so gave me sufficient understanding to go back into Perl and figure out how packages and modules and such work.
Oh, blow it out your arse. Python is an object-oriented procedural language with some functional aspects thrown in for good measure. Python was never trying to be Lisp. And thank Guido for that!
the growth in cynicism and rebellion has not been without cause
a,b = b,a
Pretty sure it works the same way in MATLAB, too, but I don't have mine here to check...
people who send HTML mail are going to be the first against the wall when the revolution comes.
Congratualations on a thoroughly short-sighted viewpoint.
HTML email is not just for spammers.
The ability to send HTML forms to employees is a boon among other benefits.
Maybe you've never shared the joy of sending an HTML birthday card to your child or parent.
Perhaps sending A4 pngs around would be more to your liking?
The ability to communicate with the richness of HTML expression should be embraced and standardised not spurned.
aw, well. smash the HTML presses
There are places where the networks are not touching,and there are places where they are-Boeing's Lori Gunter
too bad that only works on things that XOR makes sense for. What happens when you have lists of sockets? Or want to swap objects that aren't the same size?
Tuple assignment is much more interesting, and, while showing "a,b=b,a" is trivial, showing how & where tuple assignment can be used is an important thing to pick up if you're comming from languages which don't allow such constructs.
my sig's at the bottom of the page.
Rather than a new topic for Python, I'd rather see a Scripting topic. So, yeah, that means no cute Python icon, but it does put all the scripting issues in one place for people to select or ignore.
Aside from the point about lack of declaration of variables, you're points against Python all reduce down to syntax issues.
It's a good thing you posted AC. I wouldn't want to take credit for that dreck either.
Oh, and if Python were only two years old, then I wouldn't have been able to do the Python project I did for a client when I did.
Have you even used Python? I didn't think so. I guess that if you want to be cynical and condescending about a language just because you're a self-appointed language guru, then please go ahead. But I think we would all prefer that you keep your opinion under wraps until it is informed and rational.
Please mod this post only if you think others should/n't read this. I have enough ego^H^H^Hkarma. Thanks!
Larry Ewing
[Science] is one of the very few things that raises human life a little above farce and gives it the grace of tragedy.
The issue of tabs and spaces being mixed is well known and debated in the Python community, and mixing is considered very poor form. There are code checkers to avoid this, and Python can be run to reject mixing as a syntax error (personally, I hope this becomes the default in a later release).
I'm not entirely clear what you mean by this, "handle" is not clear term. Perhaps you mean, based on the variable name, you cannot tell the class? (Neither by name, nor by looking back in the code for a declaration on that name)This is true. Perhaps you do not understand the style of programming that Python encourages -- it's roots lie in Lisp and Smalltalk, not C or Fortran. I.e., fully dynamic typing, where an object's type is incidental, but it's properties are essential. If you don't understand that kind of programming, lack of typing will seem like a deficiency.
Not true. Variables spring into being when you initialize them. Python is not like PHP or Perl in this regard -- there is no default value for an uninitialized variable.Lack of declarations is not a large source of bugs in actual use, and those bugs that do exist are shallow and easy to fix. Deep bugs are dangerous, but this does not often lead to deep bugs (though language that allow uninitialized variables can get themselves into trouble).
It's built-in data structures are useful, and C (and even Java) are simply lame not to include them directly in the language. Lisp is another matter (though, again, the literal data types available are slim). Python tends to have fairly Lisp-like semantics, and that's okay. Designers of Python have never claimed to be revolutionary -- rather, they have tried to take the best features of languages that have come before, and create a language that puts them together in a pleasing way (unlike, say, Perl that takes every feature, throws them into a big heap, and calls it freedom). Such as? [ ] and { } are taken (and by data structures that are used more often than tuples). It works, and you get over the (x,) thing really quickly.Obviously from this critique, you have never seriously used the language. You only are able to critique its outermost veneer of syntax, and you don't have the knowledge to make any comment on the power of its semantics. The wise language designer knows semantics are more important than syntax (though syntax can get in the way, Lisp being the primary example).
Don't make a scripting topic and expect all talk of python and perl to be done there. they are both full programming languages. (as are others such as tcl)
scripting is something can can easily do with them but should not be portrayed as a limitation.
I'm not certain if this is some sort of obscure joke, but you misunderstand the future statement. It turns on language features that are being phased in on a particular release. It does not and cannot activate those features in a language version that does not support it. 1.5.2 doesn't have the __future__ directives at all.
Really, do you think these experts would have missed something that obvious?
I'd wager that since that averages out to 12 seconds per query that your metric is useless, besides DB queries reflect the database more than anything else, all the language does is send a string off to a C API which then queries the DB and gets the info. Same thing with the GUI. A better metric for the language would be say processing large amounts of data.
Photos.
You forgot the part where A and B are declared as 'float', and so this clever trick is really stupid and/or invalid, a lot of the time.
"It's overkill, of course. But you can never have too much overkill." - Anonymous Slashdot Coward
Ah yes, another attack from yet another person too cowardly to actually own up to their writing. I don't normally make mistakes like that, but I am big enough to own up to them and correct myself when needed. I can't say the same thing about most ACs.
For the record (without even using a dictionary):
their = possessive
they're = they are
there = not here
It's a typo that's all. I made a mistake.
Please mod this post only if you think others should/n't read this. I have enough ego^H^H^Hkarma. Thanks!
b = a + b;
a = b - a;
b = b - a;
In the case where you're using unsigned integers with wrap around semantics, yes. In the case that a,b are floats, integers on some systems (this won't work on signed magnitude systems, or in programming languages (like Ada) that have overflow checking), it doesn't work. It's nowhere as clear as "a,b = b,a", and doesn't work on general variables.
Trust me, it's not nearly as funny if a snake really did want to eat you when you were younger.
(Yes, one actually did, during a visit from a zookeeper to my school to show us what reptiles were really like. I was sitting at the end of a line of small children, and it started coiling around me... :-o I can handle spiders, or enclosed spaces, or high altitudes, but to this day, snakes scare the living **** out of me -- unless I'm programming in one, of course.)
If you disagree, post your argument. (-1, Overrated) isn't your personal censorship tool for views you don't like.
T'Pol: It's a Klingon delicacy... But only when it's alive.
Hoshi: [Winces]
If you disagree, post your argument. (-1, Overrated) isn't your personal censorship tool for views you don't like.
And even more wrong, in just about every language I know that supports an xor-assignment operator, because it modifies the same variable multiple times in one statement. :-(
If you disagree, post your argument. (-1, Overrated) isn't your personal censorship tool for views you don't like.
You make it sound as if "scripting language" is some kind of negative term. Hey, scripting languages have their strengths and weaknesses. You couldn't run the WWW without them, but I'd never use them to write CPU-intensive programs. And it's interesting to compare them to each other.
Anyway, you seem to be saying that next time we get a story about Ruby or TCL, we should lump them together with all the "other" programming languages, despite their kinship to other scripting languages, such as Perl, Python, and PHP.
...But I couldn't eat a whole one.
SCNR. :-)
If you disagree, post your argument. (-1, Overrated) isn't your personal censorship tool for views you don't like.
No; it's also for people who want me to want a half hour to get my mail over my modem, so I can get the exact same message but with lots of HTML tags. (And invariablly lots of HTML tags - it never bears any resemblence to clean hand-written HTML.)
so you'd prefer me to send you a png attachement,
or maybe an html document in a gzip?
It seems like you are troubled by the poor use of HTML email not HTML email par se.
And what happens when you need to make a change to that form? Why not just stick it your own private webspace?
It's a little thing called 'convenience'. It aids workflow. I know it's only a little step but imagine getting a letter saying "there's a picture on the noticeboard, go look at it". HTML improves the flow of communication. People are not always great at mentally task switching and when they are "reading their email" firing up a browser breaks that task.
Ah, yes; the wonderous feeling of "you crossed my mind, but I couldn't be bothered to walk to the store for a _real_ birthday card".
I'll take that as a "no". Last time I looked I couldn't embed sound and video in a store bought card.
Again, it's the immediacy that's makes the difference. Imagine opening your card and getting a note "your card is on the table" and looking to the table there is your card on public display.
Email is a provate thing, the web is a public thing. Even if it's on the LAN the psychology of it makes a difference.
I fail to see how this could be made richer by adding HTML.
For in that sleep of death, what dreams may come
HTML seems to be used as a means to doodle on the email, rather then add any information or emotional empact.
So what? Should we be disallowed enjoyment because *you* can't see any benefit?
Why do webs sites use colour, graphics, mark up, tables etc. etc. ?
because people like them
Now I do concur that having HTML mail on by default is a crazy idea. 99% of the HTML mail I receive is either better as plain text or better to not get at all.
but to suggest I should be "the first against the wall" because I want to send an HTML christmas card to my friends is short sighted, rude, offensive and promotes banality.
There are places where the networks are not touching,and there are places where they are-Boeing's Lori Gunter
so you'd prefer me to send you a png attachement,
Yes, if what you want to send is a bitmap graphic.
or maybe an html document in a gzip?
Yes, if what you want to send me is an html document.
It seems like you are troubled by the poor use of HTML email not HTML email par se.
Yes, but as you say
99% of the HTML mail I receive is either better as plain text or better to not get at all.
If it weren't for that 99%, there wouldn't be enough reason to support HTML email in most email clients, especially as it has had so many security holes and privacy leaks.
there is your card on public display.
Why would it be? All the webcard services give you cookies in the link to make sure it's not on public display.
Should we be disallowed enjoyment because *you* can't see any benefit?
Should we all fall silent when you enter the room, because we may offend you? It brings me absolutely no benefit, and I feel free to bitch about it. Feel free to ignore it, but I don't see why I should shut up, because you like it.