From 6afbad67e31f7ae578a2a6526d66ca5714ddf514 Mon Sep 17 00:00:00 2001 From: trecart <30315837+trecart@users.noreply.github.com> Date: Mon, 9 Jan 2023 17:22:40 +0800 Subject: [PATCH] Update 4.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 51行 def chagne_number( b ): change --- Article/PythonBasis/python6/4.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Article/PythonBasis/python6/4.md b/Article/PythonBasis/python6/4.md index e9b7b6e..ccd9862 100644 --- a/Article/PythonBasis/python6/4.md +++ b/Article/PythonBasis/python6/4.md @@ -48,7 +48,7 @@ print( b ) ```python # -*- coding: UTF-8 -*- -def chagne_number( b ): +def change_number( b ): print('函数中一开始 b 的值:{}' .format( b ) ) b = 1000 print('函数中 b 赋值后的值:{}' .format( b ) )