Hi,
I am not sure what 'random' does (what package is it from?), but
list=['1','2','3']
slist=','.join(list)
works, while
list=[1,2,3]
slist=','.join(list)
does not. It appears 'join' only works on lists (and maybe tuples?) of
string objects and the list must be passed in as an argument. Tr
Thanks again!That is just what I need.-JOn 10/29/06, Glenn T Norton <[EMAIL PROTECTED]
> wrote:jhl wrote:> Hi->> How is the 1st import of a module removed so that new edits on the
> module can be re-imported?>> DETAIL:>> I am working on a module/file and importing it into a python shell,> trying it
Hi-How is the 1st import of a module removed so that new edits on the module can be re-imported?DETAIL:I am working on a module/file and importing it into a python shell, trying it out and then tweaking/editing the module. Then to see the effects of the edits, I want to re-import the file and find