Extracting elements over multiple lists?
Dave Angel
d at davea.name
Tue Nov 15 13:17:48 EST 2011
More information about the Python-list mailing list
Tue Nov 15 13:17:48 EST 2011
- Previous message (by thread): Extracting elements over multiple lists?
- Next message (by thread): Extracting elements over multiple lists?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
On 11/15/2011 12:01 PM, Prasad, Ramit wrote: > <SNIP> >> (Peter's "del" solution is quite close, but I find the 'del' statement >> tricky in python and will mislead many python newcomers) > Can you expand on why 'del' is "tricky"/misleading? > > Ramit > a = someexpression... b = a .... del a Does not (necessarily) delete the object that a refers to. It merely deletes the symbol a. -- DaveA
- Previous message (by thread): Extracting elements over multiple lists?
- Next message (by thread): Extracting elements over multiple lists?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list