del
Published Jul 11, 2022
Contribute to Docs
The del
keyword is used to remove an object from the namespace of a Python shell or environment.
Syntax
del object
Depending on the object
, the del
keyword will do one of the following:
- Plain deletion where the name of the
object
variable is removed from the local/global namespace. - Recursive deletion where any inner elements or attributes of the
object
(e.g., lists and classes) are deleted as well.- These inner elements can include list items and class attributes.
- Slicing of specific inner elements in a sequence.
Codebyte Example
The following example showcases some uses of the del
keyword:
Contribute to Docs
- Learn more about how to get involved.
- Edit this page on GitHub to fix an error or make an improvement.
- Submit feedback to let us know how we can improve Docs.
Learn Python on Codecademy
- Career path
Computer Science
Looking for an introduction to the theory behind programming? Master Python while learning data structures, algorithms, and more!Includes 6 CoursesWith Professional CertificationBeginner Friendly75 hours - Course
Learn Python 3
Learn the basics of Python 3.12, one of the most powerful, versatile, and in-demand programming languages today.With CertificateBeginner Friendly23 hours