From 67faf2a795eec31d7d9c6dfbefc73d7522bd0feb Mon Sep 17 00:00:00 2001 From: wylnoword <43903008+wylnoword@users.noreply.github.com> Date: Mon, 13 Jan 2020 15:40:01 +0800 Subject: [PATCH] Update 2.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 别字修正 --- Article/PythonBasis/python7/2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Article/PythonBasis/python7/2.md b/Article/PythonBasis/python7/2.md index 83df50ac..0d89ba1b 100644 --- a/Article/PythonBasis/python7/2.md +++ b/Article/PythonBasis/python7/2.md @@ -19,7 +19,7 @@ iter1 = iter ( str1 ) list1 = [1,2,3,4] iter2 = iter ( list1 ) -# 3、tuple(元祖) 对象创建迭代器 +# 3、tuple(元组) 对象创建迭代器 tuple1 = ( 1,2,3,4 ) iter3 = iter ( tuple1 )