|
Size: 667
Comment:
|
Size: 117
Comment: changed formatting and added link to JAM/Code/PlatformFinder
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 1: | Line 1: |
| Powerful Python One-Liners | = Powerful Python One-Liners = |
| Line 3: | Line 3: |
| * Grab a document from the `net: * from urllib import urlopen;doc = urlopen("http://www.python.org").read();print doc ---- I don't like the idea of python "one-liners". For instance, in the above example, there are actually 3 statments there: {{{ #!python 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 ---- |
["JAM/Code/PlatformFinder"] - This program tells you what platform you are using. |
Powerful Python One-Liners
["JAM/Code/PlatformFinder"] - This program tells you what platform you are using.
