Just a quick one

Phil Frost indigo at bitglue.com
Wed Aug 25 18:40:23 EDT 2004


A tuple (actually, any iterable) can be converted to a list by using
list(), like so:

list( (1, 2, 3) )  ==>  [1, 2, 3]

In fact, most types can be converted like so, str(), list(), dict(),
tuple(). You can always do "help(str)" in Python for more verbose
information.

On Wed, Aug 25, 2004 at 03:00:11PM +0100, M. Clift wrote:
> Hi Benjamin,
> 
> Sorry, another question. How do I remove the brackets form the list?
> Name_List.remove('(') doesn't work.
> 
> Thanks,
> 
> M



More information about the Python-list mailing list