[Zope] I Got the Concatenation Blues

Chris Withers chrisw@nipltd.com
Sun, 11 Nov 2001 12:01:54 +0000


Ben Ocean wrote:
> 
> import string
> 
> def concatFrame(str):
>   frame = string.join(str,'_frame')
>   return frame

Just a small note; 'str' is the name of a python builtin function, you may end
up confusing yourself if you use it a lot as a variable name. I get the same
with 'type' ;-)

cheers,

Chris