diff --git a/zk/Lists_in_Python.md b/zk/Lists_in_Python.md index e8bf5b2..350afcc 100644 --- a/zk/Lists_in_Python.md +++ b/zk/Lists_in_Python.md @@ -103,7 +103,6 @@ We distinguish `del` from `remove` when removing elements from lists: - `del` requires an index value - `remove` requires a value reference (i.e. the name of the element rather than - its index) `del` is simple deletion whereas `remove` searches the list. Therefore `del` is more efficient.