Subject: Difference between del and remove?
From: Terry Reedy
Date: 12/12/2007 11:34:42 PM
"Yansky" <thegooddale@gmail.com> wrote in message
news:eb0cc538-c1bc-470d-a863-afd15ccafedb@e25g2000prg.googlegroups.com...
| Got a quick n00b question. What's the difference between del and
| remove?
Python has a del statement but not a remove statement. Correspondingly,
the first is a keyword and the second is not.
tjr
|