Re: How do I output a list like the interpreter do?

2007-05-03 Thread noagbodjivictor
On May 3, 8:24 pm, [EMAIL PROTECTED] wrote: > On May 3, 8:01 pm, [EMAIL PROTECTED] wrote: > > > On May 3, 8:00 pm, [EMAIL PROTECTED] wrote: > > > > >>> s = ['a','b'] > > > >>> s > > > ['a', 'b'] > > > > This is what I want so that I can put it in a module then import that > > > module to work with

Re: How do I output a list like the interpreter do?

2007-05-03 Thread noagbodjivictor
On May 3, 8:01 pm, [EMAIL PROTECTED] wrote: > On May 3, 8:00 pm, [EMAIL PROTECTED] wrote: > > > >>> s = ['a','b'] > > >>> s > > ['a', 'b'] > > > This is what I want so that I can put it in a module then import that > > module to work with my variable. > > Sorry for that typo in the title... I foun

Re: How do I output a list like the interpreter do?

2007-05-03 Thread noagbodjivictor
On May 3, 8:00 pm, [EMAIL PROTECTED] wrote: > >>> s = ['a','b'] > >>> s > ['a', 'b'] > > This is what I want so that I can put it in a module then import that > module to work with my variable. Sorry for that typo in the title... -- http://mail.python.org/mailman/listinfo/python-list

How do I output a list like the interpreter do?

2007-05-03 Thread noagbodjivictor
>>> s = ['a','b'] >>> s ['a', 'b'] >>> This is what I want so that I can put it in a module then import that module to work with my variable. -- http://mail.python.org/mailman/listinfo/python-list