11 Nov
2001
11 Nov
'01
12:01 p.m.
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