Differences between revisions 1 and 2
Revision 1 as of 2005-02-05 15:52:24
Size: 152
Editor: h134-215-201-101
Comment:
Revision 2 as of 2005-02-06 20:00:59
Size: 647
Editor: rba-cache1-vif1
Comment:
Deletions are marked like this. Additions are marked like this.
Line 5: Line 5:

----
I don't like the idea of python "one-liners". For instance, in the above example, there are actually 3 statments there:

from urllib import urlopen

doc = urlopen("http://www.python.org").read()
print doc

My opinion is that this form is far more readable and clear. I propose that, rather than go for one-liners, rather go for "powerful code snippets", where we don't try to squeeze stuff into one-line just for its own sake. Thoughts on this, anyone?

CalebHattingh
----

Powerful Python One-Liners

* Grab a document from the `net:


I don't like the idea of python "one-liners". For instance, in the above example, there are actually 3 statments there:

from urllib import urlopen

doc = urlopen("http://www.python.org").read() print doc

My opinion is that this form is far more readable and clear. I propose that, rather than go for one-liners, rather go for "powerful code snippets", where we don't try to squeeze stuff into one-line just for its own sake. Thoughts on this, anyone?

CalebHattingh


Powerful Python One-Liners (last edited 2023-07-19 19:23:56 by HermannStammWilbrandt)

Unable to edit the page? See the FrontPage for instructions.