Differences between revisions 5 and 7 (spanning 2 versions)
Revision 5 as of 2004-12-24 15:22:23
Size: 3875
Editor: ip68-230-177-98
Comment: More minor formatting
Revision 7 as of 2004-12-25 13:55:57
Size: 3818
Editor: p5082C8C3
Comment: Added colors.
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
Anyway, I thought it was a good idea, and a wiki page seems the best way to distribute the lifting. I'm hopeful this will get it started, but don't have any investment in the form or content of what is here; refactor at will. (I don't know how to format code in moinmoin, so if you see it goofy before I've figured it out, please be a gnome!-- BrianvandenBroek Anyway, I thought it was a good idea, and a wiki page seems the best way to distribute the lifting. I'm hopeful this will get it started, but don't have any investment in the form or content of what is here; refactor at will. -- BrianvandenBroek
Line 12: Line 12:
{{{>>> string_list = ['one', 'big', 'string', 'in', 'pieces'] {{{#!python
>>> string_list = ['one', 'big', 'string', 'in', 'pieces']
Line 27: Line 28:
{{{>>> print '%s%s%s%s%s' %tuple(string_list) {{{#!python
>>> print '%s%s%s%s%s' %tuple(string_list)
Line 30: Line 32:
This is much more efficient, but is also rather more limited in the range of circumstances to which it applies. It could be made more general by constructing the formatting string as a function of {{{len(string_list)}}}, but this would be a bit dubious, too, when we have This is much more efficient, but is also rather more limited in the range of circumstances to which it applies. It could be made more general by constructing the formatting string as a function of `len(string_list)`, but this would be a bit dubious, too, when we have
Line 35: Line 37:
{{{>>> print "".join(string_list) {{{#!python
>>> print "".join(string_list)
Line 40: Line 43:
The major thing to puzzle the newcomer here is why {{{"".join(some_list)}}} rather than {{{some_list.join()}}}. The way to think of this is that you are using the string "" to join the elements of some_list. Hence, The major thing to puzzle the newcomer here is why `"".join(some_list)` rather than `some_list.join()`. The way to think of this is that you are using the string "" to join the elements of some_list. Hence,
Line 42: Line 45:
{{{>>> print 'JOINT'.join(string_list) {{{#!python
>>> print 'JOINT'.join(string_list)
Line 53: Line 57:
{{{if (count > 10) == True: {{{#!python
if (count > 10) == True:
Line 58: Line 63:
{{{def count_tester(count): {{{#!python
def count_tester(count):
Line 68: Line 74:
{{{if count > 10: {{{#!python
if count > 10:

Following a suggestion (not yet linkable on google groups) of FernadoPerez on comp.lang.python, I am inaugurating this wiki page. Fernado's suggestion was that there should somewhere be a collection of bad python practices together with an explanation of the badness and a preferred alternative. As a hobbyist uni-lingual programmer, I can say that I'd certainly find such a resources useful. I can kick it off, but I'm afraid that I likely have more to offer on the dubious than the preferred side of the ledger.

Anyway, I thought it was a good idea, and a wiki page seems the best way to distribute the lifting. I'm hopeful this will get it started, but don't have any investment in the form or content of what is here; refactor at will. -- BrianvandenBroek

String Concatenation

String concatenation is building up a relatively lengthy string from a collection of strings.

Dubious Way

Newcomers to Python often try to build strings up like this:

   1 >>> string_list = ['one', 'big', 'string', 'in', 'pieces']
   2 >>> new_string = "" 
   3 >>> for s in string_list: 
   4         new_string = new_string + s
   5 >>> print new_string 
   6 onebigstringinpieces 
   7 >>>

The Problem

This is slow and resource heavy. Each time through the for loop, a new string is built and the old one is discarded. That might not matter so much for such a small case, but as the number of elements to be joined creeps up, so too does the inefficiency.

Preferred Alternatives

String Formatting

For short cases where the number of strings to be joined is known, you can use string formatting as follows:

   1 >>> print '%s%s%s%s%s' %tuple(string_list)
   2 onebigstringinpieces

This is much more efficient, but is also rather more limited in the range of circumstances to which it applies. It could be made more general by constructing the formatting string as a function of len(string_list), but this would be a bit dubious, too, when we have

The join method of strings

The join method of the string type lets you perform the concatenation as follows:

   1 >>> print "".join(string_list)
   2 onebigstringinpieces

This is quite efficient and perfectly general as it applies to any arbitrary list of strings. (You don't need to know the list length in advance.)

The major thing to puzzle the newcomer here is why "".join(some_list) rather than some_list.join(). The way to think of this is that you are using the string "" to join the elements of some_list. Hence,

   1 >>> print 'JOINT'.join(string_list)
   2 oneJOINTbigJOINTstringJOINTinJOINTpieces

That said, some do consider this aspect of the join method of strings odd enough to count as a PythonWart.

Boolean Redundancy

(Please name me better!)

Among the most common tasks in programming is to test if a condition obtains and act accordingly. It is common for newcomers to Python to adopt an all-together overly verbose idiom for this.

Dubious Way

   1 if (count > 10) == True:
   2     # continue process

and

   1 def count_tester(count):
   2     if count > 10:
   3         return True
   4     else:
   5         return False

The Problem

There is a (very slight) speed of execution inefficiency in these examples. But much more important is the speed of entry and understanding inefficiency. All other things being equal, extra typing is evil. And, unless some gain in clarity is purchased by the extra characters, the more characters in the code, the longer that code will take to understand. (The programming time you save could well be your own!)

Preferred Alternatives

   1 if count > 10:
   2     # continue process
   3 
   4 def count_tester(count):
   5     return count > 10

DubiousPython (last edited 2010-07-20 17:56:20 by 65-125-135-157)

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