From f90556338b157444e968c84f24a913cd808df64a Mon Sep 17 00:00:00 2001 From: Tian4O4 Date: Thu, 11 Dec 2025 14:33:00 +0800 Subject: [PATCH] =?UTF-8?q?a=20small=20spelling=20mistake=20(list=20?= =?UTF-8?q?=EF=BC=86=20lsit)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Article/PythonBasis/python6/3.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Article/PythonBasis/python6/3.md b/Article/PythonBasis/python6/3.md index 2d3b8ccd..e6370809 100644 --- a/Article/PythonBasis/python6/3.md +++ b/Article/PythonBasis/python6/3.md @@ -54,7 +54,7 @@ print_user_info( '三点水' , 25 ) 默认值参数就这样结束了吗? -还没有的,细想一下,如果参数中是一个可修改的容器比如一个 lsit (列表)或者 dict (字典),那么我们使用什么来作为默认值呢? +还没有的,细想一下,如果参数中是一个可修改的容器比如一个 list (列表)或者 dict (字典),那么我们使用什么来作为默认值呢? 我们可以使用 None 作为默认值。就像下面这个例子一样: