From 1e235e30376e299285726ac62475b7a1db94a0f2 Mon Sep 17 00:00:00 2001 From: thomasabishop Date: Fri, 18 Oct 2024 10:00:03 +0100 Subject: [PATCH] Autosave: 2024-10-18 10:00:03 --- zk/Lists_in_Python.md | 1 - 1 file changed, 1 deletion(-) 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.