What is it?
statement to delete
- item in an object
del target["go"]
del target[0] # better to use pop() in the case of needing return value
del target[:] # better to use target.clear() explicitly
- binding of a name from the local or global namespace
del target
- attribute
del target.go
Top comments (0)