bob gailer wrote: > The del statement is the way to delete variables. Since dir() gives you > their names one needs use eval. > > for varName in dir(): > eval 'del ' + varName
I think del globals()[varName] would work. Kent _______________________________________________ Tutor maillist - [email protected] http://mail.python.org/mailman/listinfo/tutor
