From 55dc77e4fe5a40c93d9480d0a16a01d0bfbe9420 Mon Sep 17 00:00:00 2001 From: VectorLu Date: Wed, 14 Aug 2024 09:02:03 +0800 Subject: [PATCH] correct the comment of copy() --- Book1_Ch05_Python_Codes/Bk1_Ch05_15.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Book1_Ch05_Python_Codes/Bk1_Ch05_15.ipynb b/Book1_Ch05_Python_Codes/Bk1_Ch05_15.ipynb index 4b1e319..4f67ab7 100644 --- a/Book1_Ch05_Python_Codes/Bk1_Ch05_15.ipynb +++ b/Book1_Ch05_Python_Codes/Bk1_Ch05_15.ipynb @@ -51,7 +51,7 @@ "metadata": {}, "outputs": [], "source": [ - "# 只深复制一层\n", + "# 只复制一层\n", "list2 = list1.copy() " ] },