On Tue, Apr 08, 2003 at 02:56:08PM -0300, jubafre at brturbo.com wrote: > Hello, > > I need to change a variable from string to list. > > > > >>> x=str("[[12,13],[14,15]]") > > >>> x > > '[[12,13],[14,15]]' >>> b = eval("[[12,13],[14,15]]") >>> type(b) <type 'list'> >>> b [[12, 13], [14, 15]] -Adam